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
I have a grid with a column format {0:d} when passing in a null value its returning 12/31/1969.
<GridColumn
key= {"InvoiceDate"}
title= {"Inv Date"}
width= {85},
show= {true}
format= {"{0:d}"}
}
Any suggestions?
I copied the window component from the example(https://www.telerik.com/kendo-react-ui/components/dialogs/window/) and wanted to build a form on top of the window component. The drop down list of values is showing behind the window. I tried adjusting the z-index but was unsuccessful. I have attached an example of what i'm seeing. The only additional code I added to the example is shown below. "values" is an array of values from 1-20.
<label class=
"k-form-field"
>
<span> Dropdown </span>
<DropDownList data={
this
.values} />
</label>
We have applied a custom style to grid cells as below,
<Column key={groupArray[0]} title={currentTabColumns[groupArray[0]]} width="148px" field={groupArray[0]} cell = {RerValue} />
the extended class is as below,
export default class RerValue extends GridCell {
render() {
const style = {
backgroundColor: 'red'
};
return <td style={style}> {data} </td>;
}
but now the editing stops. If we remove the custom style the editing works.
Please guide us on how to make this work.
I need to offer the user a "Reset Grid" Button that they can use to reset the grids column widths back to their original values where all columns neatly fit in the viewable area.
I'm doing this in React and Redux based app and we have one column that doesn't have a width, call it the flex column, as we want the grid columns to sick to the edges of the grid and have the flex column adjust in size so all the columns fit perfectly. This works great on initial load. However if the user adjust columns so the width is wider than the grids viewable area and the grid shows a horizontal scroll bar then when the user clicks "Reset Grid" and we give the grid the original column configuration (same one we gave it originally which worked at that time with the flex column not having a width) the grid is fit to the width of the horizontal scrollable area and not of the viewable area meaning we still have horizontal scroll bars and the columns aren't all in view.
How do we accomplish reset like in the older grid and shown here: https://plnkr.co/edit/htk7JcHcWn4Vq8ok4T8l?p=preview
I've run into an issue when using both grouping and a custom cell with a react grid. A new column seems to be created in the grouping row, and the other rows are pushed to the left, which causes the headers to no longer line up.
Here's a link to a fork of the grouping example from the docs, with a custom cell added that shows this: https://stackblitz.com/edit/react-t9ce44?file=app%2Fmain.js
Did I miss something, or is it bugged?
Hello,
In a react grid, i have an editable text field. I discovered that the whole grid was re-rendered after each keystroke. Depending on the size of the grid and its complexity, this may slow down the cell edition.
Is it possible to only re-render the edited cell ? How can I speed up cell edition ?
Regards,
Jean-Pierre
Step to reproduce:
Case 1:
1. Go to documentation page: https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/filtering/
2. Type “ar” symbols
Actual result: Focused element is Bulgaria instead Armenia
Expected result: The first element in list focused - Armenia
Case 2:
1. Go to documentation page: https://www.telerik.com/kendo-react-ui/components/dropdowns/multiselect/filtering/
2. Type “ary” - Hungary is suggested
3. Remove "y" to search "ar"
Actual result: There is no selected element
Expected result: The first element in list focused - Armenia
Is there a way to fix this behaviour?