How to get grid name/id of the subgrids and detail grids?
The subgrid id has the form of
<master table name>_<linked_key_value>_s<subgrid index>
e.g.
orders_10124_s0
For master detail, the detail grid has the following format
For example:
<master table name>_d<detail index>
For example:
orders_d1
is the first detail grid of master grid named "orders".orders_d2
is the second detail grid of master grid named "orders".orders_d3
is the third detail grid of master grid named "orders".so on...
Hope this helps!