Created
November 5, 2021 01:37
-
-
Save benhar-dev/2216bf3001aa49097037f759087667e8 to your computer and use it in GitHub Desktop.
rowclassprovider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// example of a function compatible with the row class provider parameter | |
var FormatEntityListRow = function (rowData,rowIndex,rowNumber) { | |
var classes = []; | |
//if (rowData.isFiltered) { | |
// classes.push('hidden'); | |
//} | |
return classes; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment