jQWidgets Forums
Forum Replies Created
-
Author
-
April 10, 2014 at 6:13 pm in reply to: window shifts to the left when exiting edit mode window shifts to the left when exiting edit mode #52900
Peter
Thank you for your response!
I am afraid that I was clear because this is not an acceptable user experience.
http://jsfiddle.net/lleveille/3f3bf/
In the results window scroll over to the Price column and click on a cell
Hit the Enter Key to begin edit and then hit Enter Key to end edit.
The grid changes the focus to the first column of the grid (maybe actually to the top left corner of the grid).
This in turn pushed the cell you are editing out of view!
Interesting enough if the up and down scroll is active on the browser it does not exhibit this behavior but it does flicker the screen as if it is moving away and coming back. (also not an acceptable user experience)Again this only happened when using IE, Firefox and Chrome do not exhibit this behavior.
April 9, 2014 at 10:42 pm in reply to: window shifts to the left when exiting edit mode window shifts to the left when exiting edit mode #52817in debug I see it is running this as part of jqxgrid.edit.js
t.content.focus()
if(u!=t.getScrollTop()){window.scrollTo(w,u)}},10)April 9, 2014 at 10:25 pm in reply to: window shifts to the left when exiting edit mode window shifts to the left when exiting edit mode #52814I thought may be what was causing it but I took it out and I still have the issue
$(‘#jqxJobs’).jqxGrid(‘focus’);Peter,
I have been working with it this morning and unable to get aorund this issue with a bit of code.
Basically if coming into the grid from the other gird I put the cell they clicked on in and out of edit mode.
$(gwf_CurrentGrid).jqxGrid(‘begincelledit’, gwf_CurrentGridCell.rowindex, gwf_CurrentGridCell.datafield);
$(gwf_CurrentGrid).jqxGrid(‘endcelledit’, gwf_CurrentGridCell.rowindex, gwf_CurrentGridCell.datafield, false);
Is there a better work around?Thank you again Peter.
I have verified that this is working!!!Thank you Peter!
I do see that I am using 2.8.1
I will update and test both issues I posted.March 6, 2014 at 4:27 pm in reply to: aggregates does not work after ‘clear’ and ‘addRow’ aggregates does not work after ‘clear’ and ‘addRow’ #50619Same issue … aggregates do not work when I have an empty grid and I add rows using ‘addRow’.
Once I save and the grid has atleast one row to start with the aggregates start working. -
AuthorPosts