BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
//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