I am having difficulties adding a custom calendar to the Column component of Devextreme React library. Just trying to add a Persian calendar instead of its default calendar. Is there any possibilities to use a method for doing that.
This the Column component that I am using. As it’s expected if I remove the dataType prop, the calendar would not be rendered. So, is there any possibilities to add a new calendar to the component.
<code><Column
caption={"آخرین ویرایش"}
dataField={"updateDate"}
// allowFiltering={false}
width={120}
cellRender={renderUpdateDate}
hidingPriority={0}
dataType="date"
>
<HeaderFilter allowSearch={true} />
</Column>
</code>
<code><Column
caption={"آخرین ویرایش"}
dataField={"updateDate"}
// allowFiltering={false}
width={120}
cellRender={renderUpdateDate}
hidingPriority={0}
dataType="date"
>
<HeaderFilter allowSearch={true} />
</Column>
</code>
<Column
caption={"آخرین ویرایش"}
dataField={"updateDate"}
// allowFiltering={false}
width={120}
cellRender={renderUpdateDate}
hidingPriority={0}
dataType="date"
>
<HeaderFilter allowSearch={true} />
</Column>