Reputation: 1495
How can I hide these yellow filled rows in telerik table ?
Upvotes: 0
Views: 1118
Reputation: 1495
An appropriate approach to accomplish this specific part is to apply filtering like this
=Fields.AllowanceType <> NULL
=Fields.AllowanceAmount <> 0
As the amount isn't string that's why we can't compare string with integer.
Upvotes: 0
Reputation: 597
Doonie
i think this my help you.
Telerik responde about your questions, basically say you only need to do filtering condition like this = Len(IsNull(Fields.MyField, "")) > 0
Upvotes: 1