Posted 19 Oct 2016 Link to this post
Hi,
I have a requirement where i want only visible columns json data send to server. This is so because user will have ability to hide columns client side. Requirement is create excel at server side with only visible columns.
Regards,
Pankaj
Posted 20 Oct 2016 Link to this post
var
visibleColumns = [];
jQuery.each(columns,
function
(index) {
if
(!
this
.hidden) {
visibleColumns.push(
);
}
});