Forum Replies Created
Viewing 4 posts - 1 through 4 (of 4 total)
-
Author
-
January 15, 2018 at 10:33 pm in reply to: Error on commit when deleting row in virtualmode Error on commit when deleting row in virtualmode #98279
This is the first time I have posted to a forum. I’ve not received any responses so I am asking if I’ve not posted correctly or am I leaving something out.
Thank you.
January 12, 2018 at 7:55 pm in reply to: Error on commit when deleting row in virtualmode Error on commit when deleting row in virtualmode #98248I forgot to include the gridDeleteRow function which might be applicable.
function gridDeleteRow(obj) { var settings; settings = { action: 'delete', class: 'MARSCLASS::Web::Shared', element: 'record', sid_cn: sessionStorage.sidCN, tbl: obj.tbl, val: obj.val }; if (obj.dbase) { settings.dbase = obj.dbase } if (obj.col) { settings.col = obj.col } $.getJSON(marsHandler, settings) .done(function(objJSON) { if (objJSON.STATUS == 'OK') { obj.commit(true); } else { obj.commit(false); objJSON.ERRORS.reDirect = 0; displayError(objJSON); } } ) .fail(function(objJSON, txtStatus, errorThrown) { ajaxFail(objJSON, txtStatus, errorThrown); } ); };
May 9, 2016 at 10:47 pm in reply to: Validator not setting focus on first invalid input Validator not setting focus on first invalid input #84200Thank you for the solution! It works great.
May 5, 2016 at 5:11 pm in reply to: Validator not setting focus on first invalid input Validator not setting focus on first invalid input #84141http://jsfiddle.net/roden/2xzrjbe3/
This is the first time I have created a jsFiddle so I didn’t do it correctly please let me know.
I have turned on ‘focus’ in jqxValidator so if you run the script and click the submit button focus does not get set to the qtyInput input.
Thanks
Doug -
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)