Hi, when sorting a subgrid ID by ascending then Name by ascending, I get this column:
+----------+-----------+
| Name | ID |
+----------+-----------+
| R1 | --- |
+----------+--------- --+
| R2 | --- |
+----------+-----------+
| R3 | --- |
+----------+-----------+
| R4 | 1 |
+----------+-----------+
| R5 | 2 |
+----------+-----------+
| R6 | 3 |
+----------+-----------+
I want to display on CRM this view instead:
+----------+-----------+
| Name | ID |
+----------+-----------+
| R4 | 1 |
+----------+-----------+
| R5 | 2 |
+----------+-----------+
| R6 | 3 |
+----------+-----------+
| R1 | --- |
+----------+-----------+
| R2 | --- |
+----------+-----------+
| R3 | --- |
+----------+-----------+
Is there any way to achieve this?
Thank you in advance