So, duplicate values can exist in my app. Can I highlight “11111” ?
asdasd
11111
11111
11122233
1492299
12215464
1492298
3029931
3030373
3 Answers
It’s currently not supported.
a solution for this problem is :
a) create a view in database. the contens of this is a select idvalue, count(idvalue) as cuenta, from table1 group by idvalue,
b) call the grid by using a custom select sql with left join that include the table and the view including the field cuenta.
c) use custom css where the value is 1 or more (to highlight field ).
d) use custom add or edit to update the table1 correctly.
sorry for my bad english.
Your Answer