[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Kendo grid with column filtering on a DATE field (not DATETIME)

  • Thread starter Thread starter egarcia
  • Start date Start date
Status
Not open for further replies.
E

egarcia

Guest
Thank you for the info. This issue happens because the call to ablType() uses the value for origName to find the field instead of the field name as listed in the schema. The code cannot find the item in the schema and goes through the else clause and uses DATETIME. Are you seeing this issue with an AngularJS or an Angular project? A possible workaround is to find the following line in progress.all.js (AngularJS) or progress.core.js (Angular) and change it to use filter.field: ablType = tableRef._getABLType(field); --> ablType = tableRef._getABLType(filter.field); Please notice that if it is an AngularJS project, KUIB would restore the original progress.all.js file on code generation. Could you contact Technical Support and log a bug report for this issue? Thank you and regards.

Continue reading...
 
Status
Not open for further replies.
Back
Top