Hello,Requirement:Knowing the date/time whena particular task was assigned to a user, and sorting the assignments depending on this date/time.In detail :I am customizing the taskview.html from home module to include one more column to the display, to show the date( DateAssigned field from the dtree table) on which a task came to my personal assignments. this works fine.1) Now i want to sort all the assignments based on the date. To do the sorting on any field, a javascript function "doSubmit" is used.///////////
`[Home_HTMLLabel.Location]``%LwebUtils.SortIndicatorGet( .fArgs, 'location' )` //////////////the above line of code sorts the assignments based on the "location".But if i pass the "DateAssigned" field instead of the location in the above code, it doesn't do the sorting. What else do i have to change to acheive the sorting ?2) In the taskview.html, following HTML line displays the "Duedate" for the assignment. But for sorting only 'due' is passed to function doSubmit and not DueDate which is the field name in the dtree table. how and why is this done ? how does 'due' represent 'DueDate' ?//////////////////
`[Home_HTMLLabel.DueDate]``%LwebUtils.SortIndicatorGet( .fArgs, 'due' )` /////////////3) If it can sort on DueDate, why doesn't it sort on DateAssigned ?4) How to create a new HTMLLabel like `[Home_HTMLLabel.DateAssigned]` ? (the Xlate) The builder course manual doesn't give how to create this. 5) If i try to check the text stored in the Xlate, the builder manual (a note on page 7-3) says that I have to select it and click on Script --->Open Xlate. But in the builder, the "Open Xlate" option is never highlighted. What has to be done to enable it ?regards,