I'd like to remove the dropdown calender of grid column of which datatype is datetime,
but I can't find any property of this.
Please let me know how to do it.
Hello,
Thank you for contacting Infragistics Developer Support.
What you could do in order to remove the calendar dropdown from a DateTime columns, is to set the CellDisplayStyle property to PlainText or FormattedText. This will show only the text and not the DateTime editor. You can do that using code like:
ultraGrid1.DisplayLayout.Bands[0].Columns["Date"].CellDisplayStyle = CellDisplayStyle.FormattedText;
Please let me know if you have any additional questions.