I am trying to save a grid with GridPDFExport. I am getting a lot of errors because a custom cell contains a redux selector and needs to access global state. If I remove the cell I can download the file. How can I fix this?
I am using a Kendoreact drawer component with some menu option. On click of 1 of the menu options, it will open a grid page. My requirement is, when i am editing grid & if i click on the drawer component, i have to show a confirmation pop-up stating, "do you want to continue editing" with cancel & Ok button.
I am facing complexity in identifying click event on the drawer component. Please help.
Hello,
I have a custom cell in kendo react tree list. I want to freeze that column. Setting column property locked: true does not work.
Any ideas on how to achieve this behavior?
Thanks!
Hello.
Is it possible to set filtering in React grid to work the same as in jQuery grid?
In the jQuery grid, if I use a row filter and a column menu filter at the same time, the column filter also changes when typing in the row. I don't know about React. Is this possible or do you plan to do it in the future?
Thanks.
Hi,
I am working on Kendo React toODataString with Odata .net core.
I am facing a problem when i am call custom filter with Kendo Grid Filter.
Manual Filter:
filter=clients/any(c:c/id eq 2)
it is possible to merge two filter auto using '@progress/kendo-data-query' or can i add my manual query in kendo react datastate like this?
dataState: {
take: 10,
skip: 0,
filter: {
filters: [{
logic: "and",
filters: [{
field: "clients",
operator: "any",
value: {
field: "id",
operator: "eq",
value: 2
}
}]
}]
},
}
I want to add a custom combobox with filtering in incell grid editing. I followed this example. But filtering is not working. Please help
I am using the TreeView component with draggable enabled. I don't think that the DragClue indicator is the most intuitive way to see where the drop target is. I would like to add a line to indicate where the drop target is. I attached some images showing what I am trying to achieve. I'd like to have a blue line/indicator showing when I am dropping a node between 2 other nodes, and I would like to highlight the target node when I am dropping a node on top of another node, like show in the attached screenshot.
Any ideas on how to achieve this would be appreciated!
HI there,
I am trying to build custom combobox which offers Add text inputbox, refer the pic for the reference,
with the help of below example code.
<ComboBox
style={{
width: '180px',
}}
id='newx'
name='newX'
textField='add new data'
value={value}
data={selectedval}
onChange={(e) => handleChange(e, props)}
header={
<span
style={{
marginLeft: '60px',
}}
>
<form className='k-form' onSubmit={(e) => e.preventDefault()}>
<fieldset>
{/* <div>Name</div> */}
<TextBox
value={selectedval}
onChange={handleChangeval}
// placeholder='John Smith'
suffix={() => (
<>
{/* {value !== EMPTY_VALUE && ( */}
<InputClearValue
onClick={handleAddoperation}
className={styles.plus}
>
<SvgIcon icon={plusIcon} />
</InputClearValue>
{/* )}
<InputSeparator /> */}
</>
)}
/>
</fieldset>
</form>
</span>
}
// footer={
// <span
// style={{
// marginLeft: '60px',
// }}
// >
// footer
// </span>
// }
/>
Issue encountered:
1. when i click on text input box inside combobox, options popup closing. ( means i am not able to type or add new contents in text input box) 2. i am trying to implement this with incell. is there any other things to consider wrt Incell edit.