New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
//format column so no dropdown
GridStyleInfo style = this.gridDataBoundGrid1.Binder.InternalColumns[0].StyleInfo;
style.CellType = "TextBox";
style.CellValueType = typeof(DateTime);
style.Format = "MM/dd/yy HH:mm:ss:fff";
Here is a sample
Regards,
Jay N
''format column so no dropdown
Dim style As GridStyleInfo = Me.gridDataBoundGrid1.Binder.InternalColumns(0).StyleInfo
style.CellType = "TextBox"
style.CellValueType = GetType(DateTime)
style.Format = "MM/dd/yy HH:mm:ss:fff"
Here is the VB sample
Regards,
Jay N