Hi
I tried to add a NumericTextBox as a custom cell editor inside GridColumn. In onChange function, it updates the data list using setState and it goes focus out on every time I type a digit. Below is my code
itemChange = event => {
const value = event.value;
const name = event.field;
const dataItem = Object.assign({}, event.dataItem);
const index = this.state.data.indexOf(event.dataItem);
if (index > -1) {
const data = this.state.data.slice();
dataItem[name] = value;
data[index] = dataItem;
this.setState({
data: data
});
}
}
What may be the error cause this issue?
Thanks and Regards
Hi,
After clicking select file button in kendo upload, nothing happening ( Open Popup not displaying to choose the file).
Please help to resolve.
Thanks
Regards,
Karuna
I would want to have a column menu with the filter opening at 1 click, instead of first opening the column menu, and the opening the filter box.
An extra plus would be to have an actual filter icon instead of the default 3 dots. See the attached images for more info about what I want to achieve.
What do I need to do?
I am using react grid group feature. But it shows groups expanded by default.
I didn't found any way to show it collapsed by default.
Hi,
I am trying to create editable GridCell which could accommodate multiple lines by hitting [Enter] key.
Could you please provide an example if this is possible?
Thanks,
Sourav
How can I run an onclick event on the kendo chart?
I want to display the information in this diagram in a larger modal when I click
Thank you for your help
hello
is exist any example for update cell of Spreadsheets in kendo ui?
thanks
Hi,
Is there an exmaple for that add custom buttons to rows of Kendo Grid Grid?
thanks
While using the Kendo react editor, if I use a font family and jump to next line, the font changes.
How can I keep the selected font consistent while I'm using the editor.