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
410
Urgent~ Can I control when row added to ultragrid's datasource table?
posted

Hi,

The requirement is like this:

I've set myTable as datasource of ultragrid1. So that when new row added into myTable, then it can be seen in ultragrid. But sometimes, some rows should not be displayed in ultragrid, they shall be hidden.

this.ultraGrid1.DataSource = myTable;

...

myTable.Rows.Add(row);

Is there an event that can be fired when new row added to ultragrid or its datasource table so that I can control the logic to hidden them?