hi!
I've added a checkbox column to my grid, but i can't change it's value - if i click it nothing happens, the cell doesn't activate. Here's the code :
_locDataSet.Tables[0].Columns.Add("Select", typeof(bool),"false");
LOCValuesGrid.DisplayLayout.Bands[0].Columns[2].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
LOCValuesGrid.AfterCellUpdate += new Infragistics.Win.UltraWinGrid.CellEventHandler(LOCValuesGrid_AfterCellUpdate);
Any ideas?
Thanks!
Try to run the version utility to upgrade your project.
Thanks Amir!
This was it.
Another small question.
I've used the trial NetAdvantage to build an app, and yesterday i bought the licence for it. I've uninstalled the old NetAdvantage, installed the new downloaded one with the registered with the cd key. Now when i run the app i don't get the "is availabe for x more days of use" message, but i still get the "this was created with a demo versino of netadvantage message".
What should i do?
If you set this column cell activation to AllowEdit and it still doesn't work, you probably disabled the edit to the whole grid before that.
Hi Amir!
I tried to add an unbound column programmatically like this :
MGRValuesGrid.DisplayLayout.Bands[0].Columns.Add( "Select");MGRValuesGrid.DisplayLayout.Bands[0].Columns["Select"].DataType = typeof(Boolean);
but the result is the same as in the above situation - cannot check the checkbox.
Open the grid designer, got to columns and click on 'Add unbound column". Set its type to boolean.