Hi, my question is can I create an editing grid without assign primaryKey column? because in most of my app, PK is just numbers which I dont want show them.
or if I can hide primaryKey column, it is also OK, but there will be an alignment issue because a hidden column will leave a blank area inside the grid which is not my expect.
thanks!
Let me know if you need any additional help with this scenario. Thanks,
Angel
could you try with the following code:
in the UltraWebGrid1_InitializeLayout :
UltraWebGrid1.Bands(0).Columns.FromKey("NameOfYourPrimaryColKeyHere").Hidden = True
Thanks,