jQWidgets Forums

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Header Height & Showfilterrow Header Height & Showfilterrow #51230

    harry
    Participant

    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”: ” ”
    }]
    Thanks

    in reply to: Header Height & Showfilterrow Header Height & Showfilterrow #51086

    harry
    Participant

    Thankx 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.

    in reply to: Header Height & Showfilterrow Header Height & Showfilterrow #51082

    harry
    Participant

    Thankx 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,`


    harry
    Participant

    Thankx 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.

Viewing 4 posts - 1 through 4 (of 4 total)