jqwidgets 3.9.1 jqxgrid-api.htm not found getrowdetails ??
getrowdetails Method
Gets the rows details.
Returns an object with the following fields:
rowdetailshidden – determines whether the details are visible or not.
rowdetailsheight – determines the details height.
rowdetails – HTML string which contains the row details.
i need ($(‘#grid’).jqxGrid(‘getrowdetails’, event.args.rowindex).rowdetailshidden
$(‘#grid’).on(‘rowdoubleclick’, function (event) {
// event.args.rowindex is a bound index.
if ($(‘#grid’).jqxGrid(‘getrowdetails’, event.args.rowindex).rowdetailshidden == true)
{
$(“#grid”).jqxGrid(‘showrowdetails’, event.args.rowindex);
}
else {$(“#grid”).jqxGrid(‘hiderowdetails’, event.args.rowindex);
}
//hiderowdetails
//alert(“Row with bound index: ” + event.args.rowindex + ” has been double-clicked.”);
});