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
430
How to get hidden column value in igGrid
posted

Hi Team,

I have a requirement in which I want to hide some columns.When user double clicks on a particular row want to retrieve hidden column value and based on that I want to show another grid.

I have tried the below approach.

$("#igGrid").dblclick(function (event) {
// row html element
debugger
var row = $(event.target).closest('tr');
var strMemberCode = row.find('td:eq(0)').text();
var strFirstName = row.find('td:eq(1)').text();
var strLastName = row.find('td:eq(4)').text();
var strSSN = row.find('td:eq(5)').text();

var gridrow = $("#singleGrid").igGrid("selectedRow");
var dataview = $(documentGridName).data('igGrid').dataSource.dataView();
var cellValue = dataview[row.index]["DocumentID"];

}

I was not able to retrieve hidden column.

Please let me know ur suggestions and reply ASAP.

Regards,

Pradeep SE

Parents Reply Children
No Data