I have an editable cell in a B panel that allows users to enter the date. This is a standard m3 program. To avoid user mistakes I want to add date picker instead of the textbox. I have tried with below code and it did not work.
let contentElement = this.controller.GetContentElement();
const activeGrid = ListControl.ListView.GetDatagrid(this.controller);
let fields: IColumnFormat[] = [{ name: "OARLDT", columnType: "DATE", dateFormat: "yyyymmdd" }];
This works well for coumnType "INPUT", but not for DATE. Any idea?

