problem with getCellContent

Hi,



        

             1

             pwd

             abc

             male

             JP

             123

             ss@ss.ss

             2

            







        

    



On button click( like “SAVE” ) I want to get the value of email and check it with my way.

How can I get the value of the email cell of edited row.



please helpme asap.



Tuhin

The grid will ignore unknown attributes of cell tag, such as name
( if you need to set unique names for grid columns you can use  grid.setColumnIds command )

>>How can I get the value of the email cell of edited row.

var email = grid.cells(grid.getSelectedId(),6).getValue();   // 6 - index of email column


Sir,



thx for ur answer.



Tuhin