DateField
Ext.netでカレンダーアイコンを削除/非表示にするにはどうすればよいですか?テキストを直接編集するだけで入力が必要です。
DateField dtPlanDate = new DateField {
ID = "dtPlanDate",
FieldLabel = Strings.PlanDate,
LabelAlign = LabelAlign.Top,
ToolTip = "Enter Date",
Value = DateTime.Today,
MinDate = DateTime.Today,
MaxDate = DateTime.Today.AddDays(1),
StartDay = (int)DayOfWeek.Monday,
};