GridViewDataDateColumn.PropertiesDateEdit Property
In This Article
Gets the column editor’s settings.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public DateEditProperties PropertiesDateEdit { get; }
#Property Value
Type | Description |
---|---|
Date |
A Date |
#Remarks
The PropertiesDateEdit property allows you to access and customize the settings of the column’s editor used to edit DateTime values.
Note
Settings provided by the Properties
#Example
<dx:ASPxGridView ID="ASPxGridView1" runat="server" Width="100%" KeyFieldName="OrderID"
DataSourceID="OrdersDataSource" >
<Columns>
<dx:GridViewDataTextColumn FieldName="OrderID" VisibleIndex="0" ReadOnly="True">
<EditFormSettings Visible="False" />
</dx:GridViewDataTextColumn>
<dx:GridViewDataDateColumn FieldName="OrderDate" VisibleIndex="1">
<PropertiesDateEdit DisplayFormatString="ddd dd/MM/yyyy" Height="30" />
</dx:GridViewDataDateColumn>
<dx:GridViewDataTextColumn FieldName="ShipName" VisibleIndex="2">
</dx:GridViewDataTextColumn>
</Columns>
<SettingsPager Mode="ShowPager" PageSize="4" />
</dx:ASPxGridView>
See Also