Referencing row of editable grid form

I have 10 records displayed in an editable grid form. I want to get the value of the third row, field 2. Is there a way to capture that value?

There are many way to do this

You can get the value with jQuery

$value = $("#id_read_on_field2_3").text();

field2 have to be replace with the name of your field in the second column (without caplocks)
the 3 is the row number

This is in javascript on the client device, if you want this data in your application you will need to send it to your app with ajax or with an html post

Other solution: If you need the value in your application you can create a 2D string array that contain the editable grid form, fill the matrix in the onLoadRecord event

1 Like