for a customer project I was asked if it is possible to hide the filter option row of the gird (with Equals, greater than, etc.)? The first row should contain the filter elements i.e. status of a given entry and the default filter option should always be "equals". I was able to limit the entries of the filter options row to only "equals", but I was not able to hide the row completely. Is this possible?
Thank you for pointing me in the right direction.
Yours,
Stefan
Found it myself:
Handle the OnLoad-Event of the grid, adjust layout via css.
function Handle_OnLoad(sender,args)
{
HideFilterOptions();
}
function HideFilterOptions(){
var e = document.getElementById('grid_mt_c5_filter_select');
if (typeof(e) != 'undefined' && e != null){
e.style.height = "0px";
e.style.width = "0px";
e.style.border = "#FFFFFF";
}
}