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
765
Getting Cell value, only of one cell
posted

Hi every body.

I need some help in this point, i can't take de value of a cell selected in my grid, i have this code:

 $("#editarPais").live('igbuttonclick', function (e, args) {
             var cell = $('#gridPaises').igGridSelection('selectCell');
             var dataview = $('#gridPaises').data('igGrid').dataSource.dataView();
             var cellvalue = dataview[row.Index]["idPais"];
             var url =
'@Url.Action("Edit")';
             $.ajax({
                 url: url,
                 type: "POST",
                 data: { id: cell },
                 success: function () { }
             });
         });

this code is based in the example of infragistics page, but don't work.

i hope anybody helpme whit this problem.

thanks in advance!!

 

 

Parents
No Data
Reply Children