Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
295
Column actual position
posted

Is there a way to get the actual column position that is displayed in the grid. Not the visible position within a group but the position that is displayed in the grid.

Example:

                      Shipping Group                                                Billing Group

ShipAddress ShipCity ShipState ShipZip       BillingAddress BillingCity BillingState BillingZip


If I get the visible position of BillingAddress it will return 0

Is there a way to get the actual position which is 4 without iterating over each group and the over each column to determine its actual position?

I want to get this without iterating over each group and column.

ShipAddress: 0

ShipCity: 1

ShipState: 2

ShipZip: 3

BillingAddress: 4

BillingCity: 5

BillingState: 6

BillingZip: 7

Parents Reply Children
No Data