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
650
Problem with Ultragrid events
posted

Good Day all

Am using a Grid from  infragistics and i have a Problem.

In the (Microsoft)Gridview we have an event RowDataBound and in the infragistics grid there is no such event. What am trying to achive is that when the grid has been bind, i want to disable and hide certain cells based on the Arralist values. e.g i have the Following array list

 

ArrayList strsList = new ArrayList();

//Add the Contents of the String StrS to the Arraylist

foreach (string s in strs)

{

strsList.Add(s);

}

Now i want to Disable the Ultragrid Cells based on the Value that is in the ArrayList

 

How can i achieve that ?

 

Thank you