Hi All,
I am using jsarray to load the dhtmlxgrid in my page. I am having problem to get the selected row id.When i use getSelectedRowId(), it returns null value.
My sample array to load dhtmlx grid
Array
(
[headers] => Id,Region,Is Active
[ids] => Id,Region,Is_active
[types] => ro,ro,ro
[widths] => 40,230,100
[aligns] => center,left,left
[filters] => #text_filter,#text_filter,#text_filter
[sortings] => str,str,str
[colors] => ,
[data] => Array
(
[0] => Array
(
[0] => 1
[1] => asia
[2] => 1
)
[1] => Array
(
[0] => 2
[1] => americas
[2] => 1
)
[2] => Array
(
[0] => 3
[1] => europe
[2] => 1
)
)
)
Do i need to set the row id manually?
Anybody please give me the solution.
Thanks in advance.