jQWidgets Forums
Forum Replies Created
-
Author
-
July 30, 2014 at 3:57 pm in reply to: input change event not fired until user clicks on other element input change event not fired until user clicks on other element #57835
The change event itelf is not the issue. The issue is that IE does not fire it like other browsers as you would see if you test your demo under IE. Tab works, enter/return does not. The fix I found is to, under IE, monitor the keystrokes sent to the input field and when enter (13) is detected, trigger the change event yourself.
July 29, 2014 at 7:14 pm in reply to: input change event not fired until user clicks on other element input change event not fired until user clicks on other element #57801This may well be. However, In this case, the change event is not being fired as is proved by the non-functioning of your demo.
July 29, 2014 at 6:18 pm in reply to: input change event not fired until user clicks on other element input change event not fired until user clicks on other element #57796As a workaround, hitting TAB instead of enter seems to work – but this is not a fix.
Just to add – this behavior is also exhibited in the filter row example
http://jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm#demos/jqxgrid/filterrow.htm
Select null qty, grid clears. Click on remove Filter, grid repopulates.
Select Cafe Americano, grid clears eventhough there are cafe americano records.
Go back to qty and move to some other criteria, grid repopulates.July 3, 2014 at 6:09 pm in reply to: grid vertical scroll bar on left grid vertical scroll bar on left #56752For anyone else following original topic – found the fix which is simple. Use float left on both div sections as in
<div style=’float: left’ id=’jqxVerticalScrollBar’></div>
<div style=”margin-left: 8px; float: left” id=”jqxgrid”></div>July 3, 2014 at 6:08 pm in reply to: Grid in clobbers scrollbar theme Grid in clobbers scrollbar theme #56751For anyone else – found the fix which is simple. Use float left on both div sections as in
<div style=’float: left’ id=’jqxVerticalScrollBar’></div>
<div style=”margin-left: 8px; float: left” id=”jqxgrid”></div>July 2, 2014 at 10:35 pm in reply to: Grid in clobbers scrollbar theme Grid in clobbers scrollbar theme #56692I am trying to have a scroll bar on the left hand side of the grid, for which as I have previously pointed out rtl does not do the job I have a methodology that I believe can be used to keep the two in sync. This should not be a big deal no matter what I am using the scroll bar for and the grid should not be interfering with the style of the scroll bar.
June 30, 2014 at 10:31 pm in reply to: grid vertical scroll bar on left grid vertical scroll bar on left #56587Actually, if i could access the verticalscrollbar in the grid that wold let me do what i want – process changes, get and set min and max, etc. I see references to this.verticalscrollbar in the grid code -but i tried a few variations of getting the valuechanged event for it with no success. Is this possible? This would really be a generally valuable thing to make accessible if not.
June 30, 2014 at 10:08 pm in reply to: grid vertical scroll bar on left grid vertical scroll bar on left #56585I understand – however my requirements are that the grid should act as it does normally, but with a vertical scroll bar on the left. I could have scroll bars on both sides, and that would be ok. Are there events that allow me to track the hanges in teh defaiult scroll bar? Also I dont see a property that tells me what the upper bound on the scroll bar is.
June 26, 2014 at 6:58 pm in reply to: grid vertical scroll bar on left grid vertical scroll bar on left #56457Onfurther investigation, the side effects of rtl amke the grid too nonintuitive for a user – filter dropdowns are on the wrong side of a column for example. I will investigate syncing another scroll bar so I have one on both sides = hope this is possible.
June 26, 2014 at 6:12 pm in reply to: grid vertical scroll bar on left grid vertical scroll bar on left #56454Thanks, This works although it induces some other oddities by reversing everything,like the side the filter dropdown arrows appear on.
June 3, 2014 at 5:52 pm in reply to: sort and filter events not firing sort and filter events not firing #55285Ah – evils of cut and paste – object name was jqxgrid, not jqxGrid. Thx for the help.
-
AuthorPosts