Hi
i have trouble width the column menu in jqxgrid. I’m using angular 2. The width and also the height of the column menu is to small. I can increase the size of the menu windows with help of the columnmenuopening funktion, so the menu windows becomes bigger but the sort criteria and die filter keeps still to small. What can i do ?
/* Settings fuer jqxGrid */
GridSettings: jqwidgets.GridOptions = {
width: 1280,
height: 690,
theme: this.PCC_Theme,
source: this.source,
sortable: true,
filterable: true,
filtermode: ‘excel’,
altrows: true,
columnsresize: true,
columnsautoresize: true,
autoshowfiltericon: true,
selectionmode: ‘singlerow’,
columnmenuopening: this.columnmenuopening
};
/**
* Anpassen Menue Size
*
* @param menu
* @param datafield
* @param height
* @returns {boolean}
*/
columnmenuopening(menu: any, datafield: String, height: Number): boolean {
//menu.height(600);
menu.width(300);
return true;
}
Best Regards
Peter Wenk