ParamQuery grid support forum

General Category => Bug Report => Topic started by: jplevene on May 01, 2024, 10:15:28 pm

Title: MINOR BUG: Lazy loading dataModel > getData( response, textStatus)
Post by: jplevene on May 01, 2024, 10:15:28 pm
In dataModel > getData(response, textStatus, jqXHR), if there is a 404 or any other error, the function is not called and obviously "textStatus" is not set.
Title: Re: MINOR BUG: Lazy loading dataModel > getData( response, textStatus)
Post by: paramvir on May 13, 2024, 11:18:50 pm
dataModel.error is called whenever there is an error.

https://paramquery.com/pro/api#option-dataModel-error
Title: Re: MINOR BUG: Lazy loading dataModel > getData( response, textStatus)
Post by: jplevene on May 27, 2024, 02:41:30 am
Understood, but my point is that textStatus will always be "success", so I'm not sure why it is used.
Title: Re: MINOR BUG: Lazy loading dataModel > getData( response, textStatus)
Post by: paramvir on May 27, 2024, 10:54:04 pm
dataModel.error is useful for error handling and textStatus = "error" in the callback.