jQWidgets Forums
Forum Replies Created
-
Author
-
May 15, 2013 at 5:27 pm in reply to: Timing issue while editing.. Timing issue while editing.. #21215
Peter:
The issue is that the cellendedit event runs AFTER the editor is up and running on the next cell, so asynch:false does not make any difference. Is there any way I can detect which editor is open?
May 14, 2013 at 4:46 pm in reply to: Timing issue while editing.. Timing issue while editing.. #21143Peter:
Point taken and will not be repeated. Any idea on how top solve the issue?
May 13, 2013 at 8:53 pm in reply to: Timing issue while editing.. Timing issue while editing.. #21079Follow up:
I added this code after line 6197 of the jqxgrid.js and it works. It is a kludge as it was written in the debugger, so I rather not keep it (also, I am trying to keep the jqx code in the original):
}
// ECANDIDUS 2013-05-23
if (this.editcell && this.editcell.column == datafield && this.editcell.editor && this.editcell.editor[0]) {
this.editcell.editor[0].value = value;
}
//if (this.source && this.source._knockoutdatasource && !this._updateFromAdapter && this.autokoupdates) {
if (this.source._source._localdata) {Hope it helps….
April 29, 2013 at 3:00 am in reply to: z-Index (and not just in the grid…) z-Index (and not just in the grid…) #20174Peter:
Well, I do not think that I will need to modify anything. The issue was in the JQuery (v 1.8.3) where the outerHeight() was returning god knows what and in turn parseInt of the result was returning NaN. A fresh version of JQuery fixed all of the issues.
April 27, 2013 at 4:20 am in reply to: z-Index (and not just in the grid…) z-Index (and not just in the grid…) #20117Peter:
The issue that I have is that our app is fairly complex and I am not allowed to send you the code. I have made a fair amount of progress by modifying the js, all related to z-Index. At the moment, what is not working is the popups of popups (like the op drop down in the filter popup).
I believe that we will go ahead and purchase the source code option, which will make it a bit easier. Or at least I hope so…
Thanks for responding.
-
AuthorPosts