AS
Anna Srinivasan
June 24, 2005 09:59 AM UTC
Hi,
Sorry,I have added wrong code.This is the correct one.
If yor remove celltype i am able to get blinking cursor along with selection.
i need blinking cursor without selection.
How do i do?
GridTableCellStyleInfo readOnlyAssetStyle = new GridTableCellStyleInfo();
readOnlyAssetStyle.BackColor = Color.LightCyan;
readOnlyAssetStyle.CellType = "Static";
readOnlyAssetStyle.Trimming = System.Drawing.StringTrimming.EllipsisCharacter;
readOnlyAssetStyle.ReadOnly = true;
readOnlyAssetStyle.AllowEnter = true;
readOnlyAssetStyle.Enabled = true;
readOnlyAssetStyle.Borders.All = new GridBorder( GridBorderStyle.None );
AD
Administrator
Syncfusion Team
June 24, 2005 01:36 PM UTC
>>i need blinking cursor without selection.
What do you mean by selection?
If you do not want to see the frame around tthe single current cell, then you can try this setting.
this.gridGroupingControl1.TableModel.Options.ShowCurrentCellBorderBehavior = GridShowCurrentCellBorder.HideAlways;