1. GridView with mixture of text, decimal and combobox columns. I want to allow only combobox as editable, the rest are for display only. I don't see a property to override the default for the entire grid. Do I really have to handle an edit event and cancel if it's not a column where I wish to allow changes? If so, what's the event? If not, how can I set a specific column to allow edit or set other columns to disallow edit?
2. Is there an IsDirty for the entire grid so I can prompt the user to save? Is there an IsDirty for a column and/or a row so I can iterate through and write only the delta's unbound via an SQL stored proc? I would prefer to not have to track changes in my own code.
3. It doesn't seem like GridView likes to update the display properly from a background thread. Sometimes there's data, sometimes not, and sometimes not all the data. I don't want to suspend the UI while I'm loading data. I am running unbound.
Thanks
2. Is there an IsDirty for the entire grid so I can prompt the user to save? Is there an IsDirty for a column and/or a row so I can iterate through and write only the delta's unbound via an SQL stored proc? I would prefer to not have to track changes in my own code.
3. It doesn't seem like GridView likes to update the display properly from a background thread. Sometimes there's data, sometimes not, and sometimes not all the data. I don't want to suspend the UI while I'm loading data. I am running unbound.
Thanks