Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
795
Hiding the Rows
posted

I have a text box above the ultra grid. Initially grid will be filled up with some data(Names of the account holders). When I type the words in the text box, I should show the contains words only in the grid. Rest of the data should be hidden or deleted(Whichever is most efficient way).

 

Ex.

Lets say, Grid is filled with the following names

Inragistics

Uthay

Verdana

Steve

 

When i type the word 't', grid should now show only

Inragistics

 Uthay

Steve

as Verdana doesnt contains the word 't'. This should be eliminated

When i type the word 'te', grid should now show only

Steve

as Steve only contains the word 'te'. Others should be eliminated.

How can i achive this. Note: I cannot compromise the design. Need to achieve it thru seperate textbox only.