Hi
I have a requirement to add blank row in the grid which existing text, drop down or other control which is already in the grid. I want to do this on click of button is there any way to achieve this functionality.
Regards,
Mukesh

We have a ComboBox within a TreeView and the space bar doesn't work when attempting to type in the ComboBox input. I'm guessing it has to do with space being used for checking a checkbox on the treeview (which I don't have enabled).
Is there a workaround for this?

The typographical kerning defined by the font is not respected when exporting to pdf.
The text has the same aspect as if the following css property had been defined:
element {
font-kerning: none
}
Any idea how to fix ?

I'm trying to implement inline editing of grid row with DropDownList by following https://www.telerik.com/kendo-react-ui/components/grid/editing/editing-custom/
In that example list of options is defined inside custom component DropDownCell:
localizedData = [{ text: 'yes', value: true },{ text: 'no', value: false },{ text: '(empty)', value: null }];But in my case list of options should be received from backend by tableId+column combination.
The problem is that I can't figure out how to pass additional parameter (list of options) to props of DropDownCell.
In the example it is used in such way:
<GridColumn field="Discontinued" cell={DropDownCell} />How can I pass my_column_specific_options to that cell?
I've tried the following approach
const cell = <DropDownCell options={my_column_specific_options}/>;<GridColumn field="Discontinued" cell={cell} />but it doesn't compile.
Please, help.
Hello,
is a Native React Gantt Component already available? After searching github, npm and documentation I found this repository with a wrapper for the jQuery Component (https://www.npmjs.com/package/@progress/kendo-charts-react-wrapper), but here it says that the repo is deprecated and that the KendoReact Package should be used. I found no reference of a Gantt Component on the documentation though (https://www.telerik.com/kendo-react-ui/components/).
Best regards,
Stefan

Hi,
I see a jquery version of the spreadsheet component. Is there a timeframe when it will be availbale for REACT?

Can we modify styles at granular level like height of the row, fonts size and component level style modification using Kendo react theme builder.
I would like to modify the below and download the update theme.
1. Font Size
2. Component level CSS.
3. Custom component to look similar as Kendo component.


Hi, Could you please help me to clarify if this is intentional behavior of Grid component do not accept external className?
- classNames concatenated when scrollable set to scrollable (default)
- classNames are not concatenated when scrollable set to virtual
Digged down to the library ..../Grid.js found that the issue is in line 426
return (React.createElement("div", { style: wrapperStyle, className: 'k-widget k-grid'
+ (this.props.scrollable === 'virtual' ? ' k-grid-virtual' : ''
+ (this.props.className ? ' ' + this.props.className : '')) },
Thanks,
Alex.