I have a grid where I hide rows on the client side based on a combobox selection. Something like this:
When I do a biff export, all the data is exported, regardless of the visibility I just set on the rows client-side.
My goal is to keep the same rows hidden for the export.
My idea was to use the grid's BiffExporting event to manipulate the ExportInfrastructure.Table object, and hide the same rows. Is this possible? Or am I going about this the wrong way? I'm not even sure the visibility of the rows is available to me server side since I set them on the client side...
var grid = $find('<%=MyGrid.ClientID %>');var masterTableView = grid.get_masterTableView();// iterate through the rows and then use themasterTableView.showItem();//and masterTableView.hideItem()//methodsWhen I do a biff export, all the data is exported, regardless of the visibility I just set on the rows client-side.
My goal is to keep the same rows hidden for the export.
My idea was to use the grid's BiffExporting event to manipulate the ExportInfrastructure.Table object, and hide the same rows. Is this possible? Or am I going about this the wrong way? I'm not even sure the visibility of the rows is available to me server side since I set them on the client side...