jQWidgets Forums
Forum Replies Created
-
Author
-
March 18, 2014 at 6:52 am in reply to: Header Height & Showfilterrow Header Height & Showfilterrow #51230
Thanks a lot Peter, its working now perfectly. I have one more question, some column of my grid has space and filter is not working on those columns. Is i remove space with any character, the filter works. Is there any way, filter works with spaces in the grid column. The filter is working for id, Q and A column, but if fails for H and M column. The grid says no data to display.
[{
“id”: “1”,
“Q”: “L”,
“A”: “-“,
“H”: ” “,
“M”: ” ”
}]
ThanksMarch 16, 2014 at 11:31 am in reply to: Header Height & Showfilterrow Header Height & Showfilterrow #51086Thankx for the suggestion, but it is nor working. If i change the code to
columnsheight:’40’,
width: ‘48%’,
height: 800,
source: dataAdapter,
showfilterrow: true,
filterable: true,
editable: true,
selectionmode: ‘multiplecellsadvanced’,
The whole data from my grid is lost, The data in grid is visible only if i use px
columnsheight:’40px’,
width: ‘48%’,
height: 800,
source: dataAdapter,
showfilterrow: true,
filterable: true,
editable: true,
selectionmode: ‘multiplecellsadvanced’,
Still the first row is behind the showfilterrow. Its not visible. Please suggest.March 15, 2014 at 1:06 pm in reply to: Header Height & Showfilterrow Header Height & Showfilterrow #51082Thankx for the solution. The columnsheight works, but first row of grid is behid the showfilterrow menu. How to solve this issue. Here is my code”
`columnsheight:’40px’,
width: ‘16%’,
height: 800,
source: dataAdapter,
showfilterrow: true,
filterable: true,
editable: true,
selectionmode: ‘multiplecellsadvanced’,
Theme: ‘ui-lightness’,
ready: function () {
// callback function which is called by jqxGrid when the widget is initialized and the binding is completed.
},
columnsresize: true,`March 11, 2014 at 9:40 am in reply to: Theme color not changing in chrome Theme color not changing in chrome #50832Thankx for the quick reply. The change function works.
First i need to give a id to drop down
<select id=”sortby2″>
and change the theme selection function.
$(“#sortby2”).change(function(){
if($(this).find(‘option:selected’)[0].id != ‘Theme12’)
return;
$(‘#jqxgrid’).jqxGrid({ theme: ‘ui-le-frog’ });
$(‘#jqxMenu’).jqxMenu({ theme: ‘ui-le-frog’ });
});
The dropdownlist lookes better, i’ll look into it also. -
AuthorPosts