Click here to Skip to main content
15,895,656 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have this code to filter my Ultragrid and it works fine


Private Sub _txtAccountNum_TextChanged
(ByVal sender As Object, ByVal e As System.EventArgs) Handles _txtAccountNum.TextChanged

If sender.text = "" Then
_MasterAccountBinding.Filter = ""
End If
If IsNumeric(sender.text) = True Then
_MasterAccountBinding.Filter = "MainNum like '" & sender.text + "%'"
Else
End If
End Sub

But how to filter ultragrid by row state? i want to filter(show only) updated/modified row
Posted
Updated 26-Mar-14 23:58pm
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900