Hi Bruce,
Looking through the hotdates example and modifying the HorizontalWeekPlanner procedure, I wanted to sort the users by name on the left hand side. I found the Order setting on the template tab and selected the USE:Name field. The template genereated the following code but it did not sort the data:
open(View:User2)
View:User2{prop:order} = p_web.CleanFilter(View:User2,USE:Name)
View:User2{prop:filter} = p_web.CleanFilter(View:User2,loc:filter)
! Start of "PopulateData Insert"
! [Priority 5000]
! End of "PopulateData Insert"
set(View:User2)
At that embed point I added the following line just after the ![Prioority 5000] line above and it seems to sort fine.
View:User2{prop:order} = 'USE:Name'
Might there be an issue with the p_web.CleanFilter function?
I couldn't make the filter work there either but I think I just don't understand that setting well enough to use it effectively.
Regards
Parker