Doonie Darkoo
Doonie Darkoo

Reputation: 1495

How to hide NULL rows in telerik?

enter image description here

How can I hide these yellow filled rows in telerik table ?

Upvotes: 0

Views: 1118

Answers (2)

Doonie Darkoo
Doonie Darkoo

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

ThaNet
ThaNet

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

Related Questions