Hi,
I want to extract Date from DateTime field and bind to DatePicker. When I try to do that, it throws error as shown in below and in attached screenshot.
<DatePicker defaultValue={new Date().toLocaleDateString()}
Also wanted to know, Could onchange method on datepicker control return only date but not time?
Regards,
Parag


Hi,
I am having problems with setting mask for MaskedTextBox. My mask is something like this: mask={'Days:999 Hours:99 Minutes:99 Seconds:99'}, but letter 'a' is never rendering.
my code: https://stackblitz.com/edit/react-maskedtextbox?file=index.js
Is there any way to render full text?
Thank you,
Dusan


Hi,
I'm trying to export my grid to excel. I'm dynamically building the columns, but they don't get exported unless I hardcode them.
let columns = [], columnNames = []; if (!this.state.gridColumns) return; this.state.gridColumns.forEach( (column, index) => { columns.push( <ExcelExportColumn key={index} field={column.name} title={column.name}/> ); columnNames.push(column.name); } ); return ( <ExcelExport columns={columnNames} data={this.state.gridData} fileName="test.xlsx" ref={(exporter) => { this._exporter = exporter; }} > <button title="Export Excel" className="k-button k-primary" onClick={this.export} > Export to Excel </button> </ExcelExport>Hi,
I have integrated DateTimePicker wrapper and build the project locally, it seems to be working fine.
However, we have automated process to generate build through Jenkins and when we tried to generate the build it throws attached error
Please help

Hi,
Is it possible to have a DatePicker without any placeholder, just an empty text-box.
Thanks,
Zarko

Hi,
We are using Kendo Editor React Wrapper.
Is there an option to have Find/Replace button and pop-up in editor? That is a useful feature for user if the text they are editing is long.
Thanks,
Zarko

