Remove the repeated fields values from the Data Grid.
-
Hi, How can we remove the repeated field values from the Data Grid. for Example. If we have three fields in the list page. Country Rates Name Australia 100 ABC Australia 105 DEF Australia 105 GHI Australia 108 JKL New Zealand 100 XYZ New Zealand 101 XYZ New Zealand 100 XYZ So it will show like this: Country Rates Name Australia 100 ABC 105 DEF 105 GHI 108 JKL New Zealand 100 XYZ 101 XYZ 100 XYZ thanks
-
Hi, How can we remove the repeated field values from the Data Grid. for Example. If we have three fields in the list page. Country Rates Name Australia 100 ABC Australia 105 DEF Australia 105 GHI Australia 108 JKL New Zealand 100 XYZ New Zealand 101 XYZ New Zealand 100 XYZ So it will show like this: Country Rates Name Australia 100 ABC 105 DEF 105 GHI 108 JKL New Zealand 100 XYZ 101 XYZ 100 XYZ thanks
I think manupulate the data in the data source like data table before to bind them to the datagrid. Like after retrieveing the data into the data table, use sort by country. Then loop through each row to see if the next row has the same country or a new country. If same country, set the country cell to ''. juz my thoughts. Aaron