Forum Replies Created
-
Author
-
June 24, 2016 at 7:03 pm in reply to: Double quotes in selectedItem returns wrong label Double quotes in selectedItem returns wrong label #85415
I’ve updated your JSFiddle to demonstrate the problem:
http://jsfiddle.net/m5sj59pv/1/March 3, 2016 at 4:43 pm in reply to: Issue with Context-Menu on Firefox (Scroll Up) Issue with Context-Menu on Firefox (Scroll Up) #82097Thanks, I should be able to make a workaround this way. Hopefully there will be a way for you to work around it directly in the app.
Also note, that your workaround did not fix it if the menu was already open and you right-click again. I presume this is due to the closing animation running. I worked around that by calling this before opening the menu:
if (usersContextMenu.is(":visible")) usersContextMenu.hide();
March 3, 2016 at 2:34 pm in reply to: Issue with Context-Menu on Firefox (Scroll Up) Issue with Context-Menu on Firefox (Scroll Up) #82080Has this issue been resolved? I just discovered this today. Whenever “open” is called on a context menu in Firefox (not other browsers), the browser scrolls to the top, but the context menu opens in the correct place. Then the user needs to scroll all the way back down.
My grid is “below the fold” on the page, so this basically makes the menu unusable.
October 14, 2015 at 7:38 pm in reply to: Server-side sorting and total rows Server-side sorting and total rows #76874Hi Peter,
Thanks for the information. In the data source.sort method we were calling
$("#jqxMyRecordsGrid").jqxGrid('updatebounddata', 'sort');
and that did not update the total rows. However if I change that to
$("#jqxMyRecordsGrid").jqxGrid('updatebounddata', 'filter');
then the totalrows does work. I don’t seem to see any other side effects to passing ‘filter’ instead of ‘sort’. What’s the difference (other than it now seems to update totalrows correctly)?September 18, 2015 at 3:18 pm in reply to: Prevent mousewheel bubbling Prevent mousewheel bubbling #75984Hi Peter. My question is how do I stop it from bubbling up? I want the grid to completely handle mouse wheel events when the cursor is over it.
November 6, 2013 at 5:09 pm in reply to: Pie use displayText as label Pie use displayText as label #32063Thanks so much. This is extremely helpful!
-
AuthorPosts