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
250
readonly cells
posted

hello there,

 my question is as follows:

// i use the grid to display some data from xml 

DataSet ds = new DataSet();
ds.ReadXmlSchema(
"c:\\CustomerOrders.xsd");
ds.ReadXml("c:\\CustomerOrders.xml");
ultraGrid1.DataSource = ds;

// very simple of course

how i can made all cells in the grid as readonly?
it is a select-box in this case and i dont want the user can make some edits.

i cant find the property for that :(

 

thanks in advance
sebastian