HelloI'm using Linq to SqlTo load the grid, there is no problem, for cons, I can not edit, modify cells.
Dim Rs = From Rssql In db.TB_TOOLS _
Select Rssql
Me.UltraGrid1.DataSource = Rs
Me.UltraGrid1.DataBind()
Hi,
The grid allows editing by default. So unless you set properties on the gird to make it read-only, the grid will allow editing. Here's a KB article that describes all he ways you can disable editing in the grid, so you can search your code for any of these property settings.
HOWTO:How can I make a grid or a column, row, or cell in the UltraWinGrid disabled or read-only?
My guess is that the problem here is not the grid, but rather the data source. Your data source is probably not allowing editing.