jQWidgets Forums
Forum Replies Created
-
Author
-
June 24, 2015 at 1:51 pm in reply to: 'checkedlist' filter items for server side data 'checkedlist' filter items for server side data #72953
Never mind…I just found the filteritems property. Works great!
August 14, 2014 at 5:35 pm in reply to: Enabling autorowheight in paging mode does not allow scrolling in IE Enabling autorowheight in paging mode does not allow scrolling in IE #58376Interesting. Well I suppose I will have to do some more testing then. Thank you for testing this out!
August 7, 2014 at 1:39 pm in reply to: Scrollbar missing with autorowheight set to true Scrollbar missing with autorowheight set to true #58133Just after I sent my last post, I did think of an idea as a work around. This does work, however, it might not be the best way to fix this issue.
I added event handlers for bindingcomplete and pagechanged and reset the autorowheight and rowsheight values in those methods:
grid.on(‘bindingcomplete’, function () {
grid.jqxGrid({ autorowheight: true, rowsheight: 33 });
}).on(“pagechanged”, function (evt) {
grid.jqxGrid({ autorowheight: false, rowsheight: 32 });
});It seems as though I needed to update both properties in order to get it working properly. There is a brief moment where the scrollbar changes in size on the page change, but it does work.
I would be interested in hearing if anyone has a better idea, though!
August 7, 2014 at 1:22 pm in reply to: Scrollbar missing with autorowheight set to true Scrollbar missing with autorowheight set to true #58132Thanks for the response Peter.
That does make sense. In my example above I was using a local data set, but in my actual implementation my data adapter is set to a remote data source. So every page change request is making a server side call to get the data for that page. I’m following the example in the PHP server side paging/sorting/filtering page.
I’m assuming I need virtual mode set to true in order to support the server side processing, correct? If so, is there a way for me to have server side processing and autorowheight?
August 6, 2014 at 5:30 pm in reply to: Scrollbar missing with autorowheight set to true Scrollbar missing with autorowheight set to true #58093Also when running in IE 11, once I get the scrollbar to appear by paging forward then paging back, when I try to drag the scroll bar it does not move.
FYI, I actually have implemented that feature. It’s actually pretty straightforward if you use just get all of the tab LI elements, clone those and use jqxMenu to generate a menu for them.
July 2, 2013 at 5:20 pm in reply to: Tab Reorder – Disabling activating tab Tab Reorder – Disabling activating tab #24341Thanks for the response Mariya.
Do you think there would be any way I could hook into any of the events to prevent a tab from being selected on this event? I see from the API doc for the ‘selecting’ event I can set the event to cancel to true. Do the other events allow for this? From my tests it looks like ‘selecting’ only fires during the tabclick chain of event handlers – tabclick -> unselecting -> selecting -> selected.
If I can’t cancel the event chain, what I might end up doing for the time being is to have a set of empty div elements that jqxTabs can manage, but then have my actual content divs in another set. Then on the jqxTabs tabclick event I could show/hide my div elements.
Regards
-
AuthorPosts