Hi Chandani
Lets say you are having 2 attributes, 1. Sno 2.Product name..
Admin will see a dropdown with values sno,product name to maintain a default sort order.
In user page, in DS of product view, you can retrieve and check the default sort order maintained by admin and if it sno, you can retrieve and sort by sno and send it out. If by product name, sort it by product name and sendit out.
If you are using datagrid2, by default it will be shown in admin configured order and user can sort in their own way if needed by the sort icon of the data grid 2.
Hope it will help.
Pls correct me if I am wrong with my understanding.
Hello Chandani Giram
Define a MasterSortOrder in OperationMaster for global ordering. Create a MainPidOperation entity link in to both MainPid and OperationMaster with an optional UserSortOrder attribute . When displaying operations, use UserSortOrder if available or else use MasterSortOrder. This should make sure consistent default ordering with optional per product overrides everywhere.
Thanks