After studying the API for a Window KendoReact component, is there a way to implement either:
1) The Draggable features on a Dialog component that is overlaid on top of a Kendo React Grid component.
2) The Dialog smoke underlayment for a Window component that is overlaid on a Kendo React Grid component.
In other words I would like a draggable Dialog, or a draggable Window that looks like a Dialog implementation.
Is there anyway either of the above are possible? And if so, do you have an available example of its implementation?
Thanks,
James
SKF USA, Inc.
Hi - Is there any way to make a Kendo React Editor disabled or read-only based on any condition?
Basically I want the users to see the content of the editor, but not being able to edit the contents.
TIA.
https://stackblitz.com/edit/react-1nyjvl?file=Hello.js
Hi,
i had a problem in getting the index position of grid column, when I using the column reordering property. Actually it;s working fine, but when refreshing the page, column where reset.
in my Grid: if I moving the ID column to near after any column, how can I save the current position of ID after reloading.
In the docs it says automatic and forced page breaks can be set simultaneously. However, when they are both set and there is a really long page, it cuts off the content: https://stackblitz.com/edit/react-ctmgfy
Is it possible to create these automatic page breaks while forcing page breaks as well?
Hi,
I am trying to either customize the default tooltip that pops up when hovering over items with the title attribute (like the date input, icon on the dateinput, dates in the date picker, etc.) or remove the title attribute completely to avoid the tooltip from displaying?
How can I achieve this please?
Thanks,
Lara
I am unable to get a legend to show when using the Bubble or Scatter chart types.
I can't see a reason why it would not work, but I do not see any examples of those charts with legends, and I have not had any luck getting it to work.
I'm in need of a grid where each row has cells with a rowspan. So that the final two or three cells are split into two rows.
Here's an example I've done using rowRender.
https://stackblitz.com/edit/react-hwvage?file=app/main.jsx
I've got the layout I want however I lose the ability to sort, lock columns etc. Is there a better way to accomplish what I'm trying to do?
Thanks!
I know there has been some talk about generating a table of contents in PDF exports-- has anybody figured out a way where each section can figure out what page it is on and generate a TOC from there? Using with drawDOM.
Hello,
Is there a way to change the field value that is sent to the filtering logic within a grid when using either firstFilterProps or secondFilterProps .onChange events? I can update the operator and value but can't pass in a custom value or operator object.
So for example this causes an error
const value = {value: e.target.value, field: test.field}
firstFilterProps.onChange({
value,
operator: firstFilterProps.operator,
syntheticEvent: e.syntheticEvent
})
For example, there are two dropdown list components and an input component. The first dropdown list values are the filter operators (contains, is equal to, etc). The second dropdown list values are dynamically driven db fields (test.field, test.anotherfield, etc). The input is the value that the user wants to search.
So is there a way to either pass in that second dropdown list value as another key in the firstFilterProps/secondFilterProps object that goes to filtering OR a way to change the field value.
firstFilterProps.onChange({
value,
operator: firstFilterProps.operator,
syntheticEvent: e.syntheticEvent,
field: test.field
});