jQWidgets Forums
Forum Replies Created
-
Author
-
June 22, 2016 at 2:52 pm in reply to: TreeGrid jumps on first click in Chrome and IE TreeGrid jumps on first click in Chrome and IE #85359
Hi Peter,
I think you may be wrong about this, and this is a very real issue which affects the TreeGrid and DataTable. The Grid previously had the same issue but has been corrected.
The problem is you cannot edit any fields that first appear off the page. Take a look at the fiddle below using IE and try to edit Employee ID 85.
http://jsfiddle.net/awkuvs1w/6/The normal behavior you talk about in IE only affects input tags or javascript links. The TreeGrid and DataTable uses tables and divs. It is NOT normal behavior for those to cause a page to jump on focus. I think the problem is that you may have some click events in your javascript which use return true and need either return false instead or preventDefault.
Thank you,
Jordan GarisMarch 31, 2014 at 6:18 pm in reply to: Server side paging and client side grouping no longer working after upgrading Server side paging and client side grouping no longer working after upgrading #52266Hi Peter,
We figured out the problem… it looks like in 3.1.0, you changed how the grid handles updatebounddata. In our custom pager we were not passing any parameters, and after the change in 3.1.0, this was resetting the grouping and sorting. We updated our code to pass the additional parameters to updateBoundData(“pagechanged”), and that fixed it, leaving the grouping and sorting in tact.
I hope that helps anybody else who may come across this!
Sincerely,
Jordan GarisMarch 28, 2014 at 7:23 pm in reply to: Server side paging and client side grouping no longer working after upgrading Server side paging and client side grouping no longer working after upgrading #52162Hi Peter,
Thank you for responding. We are not doing server side grouping. We are doing server paging, and then grouping on the client side. And it has been working with 3.0.2 and 3.0.4 using the same code above to initialize the grid. I am trying to compare the file changes between 3.0.4 to 3.1.0, but it is very difficult due to the minification. I can swap out the jqwidgets versions without making any other modifications and see exactly which version it is breaking on.
I will continue to investigate the issue, and let you know what I find.
Sincerely,
Jordan GarisMarch 24, 2014 at 7:52 pm in reply to: Clicking on grid causes page jump Clicking on grid causes page jump #51777Thank you for fixing this in 3.2.2.
– Fixed an issue in jqxGrid regarding its “focus” method in Chrome.
Hi Peter,
If you do not set autoheight, you still have to set a height to invoke scrolling. When dealing with dynamic amounts of data, sometimes you have hundreds of rows and want scrolling, and sometimes just a few rows and would like the table to autoheight so there is not a large amount of white space in the grid.
For example with when you set height equal to 500, but only return 3 rows of data, the grid will still remain 500px high, and have lots of white space.
Also sometimes you want to use autorowheight and still have scrolling when there is lots of data.
Does that make sense?
Jordan
I would like to make a feature request for adding a “maxheight” property to autoheight. So it would use autoheight until it reaches a limit, and at that point it would scroll. Right now when I use height if there is only a few rows there is extra whitespace below the rows. This combination would eliminate that extra space.
Thank you for your consideration.
February 6, 2014 at 6:24 pm in reply to: Breaking Change update from 3.1 to 3.2 Breaking Change update from 3.1 to 3.2 #49095Version 3.2.1 fixed it for me. Thanks for the update!
February 5, 2014 at 3:40 pm in reply to: Breaking Change update from 3.1 to 3.2 Breaking Change update from 3.1 to 3.2 #49014We are not using it in a window or tab. However we are using it as a filter for a jqxgrid which only populates after the data is retrieved for the grid. I will play around with the visibility and initialization to see if I can come up with a working pattern. But for the record this pattern was working in 3.1.0 and broke after upgrading to 3.2.0.
February 4, 2014 at 3:49 pm in reply to: Breaking Change update from 3.1 to 3.2 Breaking Change update from 3.1 to 3.2 #48937Hi Peter,
I have no intention of modifying the scripts, I only posted this to identify where the break was occurring, so it could be fixed in a later release.
It has now been reported by 2 different users so it seems to me like a bug. Perhaps something else needs to be updated to accomodate the change made to this line from 3.1.0 to 3.2.0.
Sincerely,
Jordan GarisFebruary 3, 2014 at 10:09 pm in reply to: Breaking Change update from 3.1 to 3.2 Breaking Change update from 3.1 to 3.2 #48881I had the same issue and fixed it by changing one section of the jqxdatetimeinput.js (or jqx-all.js) file.
Before:
=========After:
=========Sincerely,
Jordan GarisI am also interested in the loader concept and accessing jQWidgets through CDN. I think you should revisit this topic and take a look at http://cdnjs.com/ Because of the total size of the package now standing at over 1.8MB, this would greatly increase performance of our web applications.
Hi Peter,
I’ve noticed those settings effect the first time you hover over the pie chart. However, when moving to all other slices, the tooltip slides into position from way off to the left of the chart. Is it possible to prevent that slide?
Thank you.
July 26, 2013 at 10:50 am in reply to: jqxGrid + Knockout + mapping : performance jqxGrid + Knockout + mapping : performance #25782I’m trying to understand how better to use the beginUpdate and endUpdate. In the example above where would you put the dataAdapter.beginUpdate and dataAdapter.endUpdate?
June 25, 2013 at 1:46 am in reply to: Linear Guage starting at 0 with positive and negative range Linear Guage starting at 0 with positive and negative range #23775Hi Dimitar,
Thank you for the code, however that was not what I was looking for. In your example the guage bar starts at -100 and you have the value set to 0. I want the guage bar to start at 0, and extend down for negative or extend up from 0 for positive.
Thank you
May 13, 2013 at 6:18 pm in reply to: Remove empty rows when grouping and paging is on Remove empty rows when grouping and paging is on #21066I found another post with the same issue here: http://www.jqwidgets.com/community/topic/virtual-paging-and-groups/
-
AuthorPosts