Browse by Tags
All Tags » Grid » Cell (RSS)
-
though may be it's a bit too ''fancy...... but i just would like to know is there any possibility to display html content in a winform grid cell??
coz i need to display the content converted from xsl in the cell........
thx in adv!
kenny
-
Hi!To make a cell showing its content as a masked password (i.e. ''*******''), one possibility is: DataRow dataRow;// gridControl1 being the default grid name when dropped on a form, could be something else dataRow = this.gridControl1.DataRows.AddNew();// WinTextBox is defined in Xceed.Editors so make you have a reference and a ''using'' ...
|
|
|
|