You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm trying to sort the first time that I load the table with a custom function but I can't achieve it. The custom function works fine, but when I load the table all the columns are disordered. If I put a column that haven't a custom function the first time is well ordered.
I've tried to use my custom function into the sortBy param: public sortBy = this.sortByTitle ;
I' ve tried to put the Title column name into the the sortBy param: public sortBy = "Title";
I've tried to call my custom function after receive all the data list from the server but doesn't works too.
** My Custom function private sortByTitle = (a: OperationEnterpriseLawyer_Grouped) => { var strWithAccent = a.Title; var strWithoutAccent: string = _.deburr(strWithAccent).toLowerCase(); return strWithoutAccent; }
The text was updated successfully, but these errors were encountered:
Hi, I'm trying to sort the first time that I load the table with a custom function but I can't achieve it. The custom function works fine, but when I load the table all the columns are disordered. If I put a column that haven't a custom function the first time is well ordered.
public sortBy = this.sortByTitle ;
public sortBy = "Title";
** My Custom function
private sortByTitle = (a: OperationEnterpriseLawyer_Grouped) => { var strWithAccent = a.Title; var strWithoutAccent: string = _.deburr(strWithAccent).toLowerCase(); return strWithoutAccent; }
The text was updated successfully, but these errors were encountered: