jQWidgets Forums
Forum Replies Created
-
Author
-
September 11, 2015 at 5:47 am in reply to: TreeGrid in Virtual mode with server side filter TreeGrid in Virtual mode with server side filter #75746
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
September 10, 2015 at 5:44 pm in reply to: TreeGrid in Virtual mode with server side filter TreeGrid in Virtual mode with server side filter #75737Hello,
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
HemadriHello,
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>August 7, 2015 at 12:59 pm in reply to: TreeGrid in Virtual mode supports pagination,filter and advance search? TreeGrid in Virtual mode supports pagination,filter and advance search? #74623Thanks..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..
-
AuthorPosts