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
80
startEdit a cell of a child row
posted

Hi everybody! Somehow I couldn't find the answer for this question in any documentation, hope you can help.

I have a Hierarchical Grid with two bands, let's assume it looks like this:

ROW A

-- child row A0

ROW B

-- child row B1

-- child row B2

-- child row B3

-- child row B4

ROW C

-- child row C5

-- child row C6

Inside iggridupdatingeditrowstarted event I want to programmatically start edit mode of a certain cell in a certain child row 

The following command only allows me to bring parent row into edit mode:

$("myGrid").igGridUpdating("startEdit", 1, 0); // this would bring cell 0 of ROW A into edit mode

How can I bring child row C5 into edit mode? I have the index "5" but $("myGrid").igGridUpdating("startEdit", 5, 0); does nothing.

Parents Reply Children
No Data