jQWidgets Forums

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts

  • hemadri
    Participant

    Thanks for replying..but scenario mention in the example is only for expended case…
    Let me try one more time to explain the issue here..

    I have lakhs of level ‘1’ rows. Instead of loading all the level ‘1’ rows initially ..I start with few of thousand in the TreeGrid once data is loaded paging,filtering all work fine..but problem is that I am stuck with only those loaded records….no way to send request to server to load next set of data..

    Thanks


    hemadri
    Participant

    Hello,

    I didn’t get this line mentioned in your post ‘The Load on demand feature loads records on demand from a server or other data source’…my question is how to tell which record to load or where to specify my demands ? Is it something which I am missing regarding ‘Load on demand’ feature?

    For load on demand I have just following function…which load data just once and further load the child node based on ‘expandedRecord’ parameter.

    virtualModeCreateRecords: function(expandedRecord, done){
    // expandedRecord is equal to null when the function is initially called, because there is still no record to be expanded.
    }

    Thanks and Regards
    Hemadri

    in reply to: dynamic height for iframe dynamic height for iframe #74925

    hemadri
    Participant

    Hello,

    Somehow its not working for me. when I resize window frame remain on its position.Here is my code..

    <style>
    .container {
    width: 100%;
    height: 100%;
    margin:0px;
    padding:0px;
    display:none;
    }
    .iframe-class {
    width: 100%;
    height: 100%;
    margin:0px;
    padding:0px;
    border:0px;
    }
    .jqx-window-content {
    padding:0px;
    overflow:hidden;
    }
    </style>

    function _createWindow(header,url) {
    $(‘#jqxwindow’).jqxWindow({
    maxHeight: ‘100%’,
    maxWidth: ‘100%’,
    minHeight: 600,
    minWidth: 600,
    height: 600,
    width: 600,
    showCollapseButton: true,
    draggable : true,
    resizable:true,

    });
    //Setting the new content
    $(‘#jqxwindow’).jqxWindow(‘setContent’,'<iframe class=”iframe-class” src=”‘ + url + ‘”></iframe>’);
    //'<iframe src=”‘ + url + ‘” width=”100%” height=”100%”></iframe>’);
    //update header
    $(‘#header’).html(header);
    //show window
    $(‘#jqxwindow’).show();
    };

    <body>
    <div id=’jqxwindow’>
    <div>

    <span id=’header’></span>
    <!– <input style=”float: right;” type=”button” value=”Ok” id=”max”> –>
    </div>
    <div>Content</div>
    </div>


    hemadri
    Participant

    Thanks..Now I can give it try..

    Is some customization is available in Data Filtering API. I was going through the demo of TreeGrid ->Filtering -> Filtering API

    I like the way it working..but I don’t like placement ..Instead placing “Filter By” dropdown separately..can it placed on header of each column..it will make it much easier to use….exactly like “data filter” in Excel works..

    null

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