We use a button in multiselect header to select several items.
This does not work in v4+ (with autoClose set to false). Any elements within do not get clicks registered it just onBlurs out and closes. This was introduced in 4.x somewhere as when I revert back to 3.x its not happening.
https://stackblitz.com/edit/react-7vxshz?file=app/main.jsx
Hi,
I am using a React Grid to display some data where one of the underlying fields is a collection of objects. At present we join this into a comma-separated string server-side, and use the standard GridColumnMenuCheckboxFilter implementation with a text filter type. However, the resulting list of items in the filter menu is just a distinct list of the combination of underlying object names which can be quite long and doesn't take into account each object. Consider the following dataset:
[
{
"ProductID": 1,
"ProductName": "Product A",
"Categories": [
{
"CategoryID": "1",
"CategoryName": "Category A"
}
]
},
{
"ProductID": 2,
"ProductName": "Product B",
"Categories": [
{
"CategoryID": "1",
"CategoryName": "Category A"
},
{
"CategoryID": "2",
"CategoryName": "Category B"
}
]
},
{
"ProductID": 3,
"ProductName": "Product C",
"Categories": [
{
"CategoryID": "1",
"CategoryName": "Category A"
},
{
"CategoryID": "2",
"CategoryName": "Category B"
},
{
"CategoryID": "3",
"CategoryName": "Category C"
}
]
}
]
This would give us a Category column with three checkbox filter items: "Category A", "Category A, Category B" and "Category A, Category B, Category C" etc.
I would like to know if it's possible to generate a GridColumnMenuCheckboxFilter that contains the entire set of discrete categories from all product records such that selecting one category will return all product rows that have that category. Using the example above, the three checkbox filter items would be "Category A", "Category B" and "Category C". Selecting Category A would return all rows, selecting Category B would only return Product B and C, selecting Category C would only return Product C.
Assuming this is possible, would it also be possible to customise the sort behaviour?
Kind regards,
David
Hi all,
Was wondering if anyone could point me to an example of using the Kendo jQuery Map widget in a React application. I looked at the available list of controls available for Kendo UI for React and didn't see a native control for maps there.
Thank you!
Hi,
It doesn't seem to be possible to clear the value of a KendoReact MaskedTextBox. This can be seen here: https://stackblitz.com/edit/react-xnkrec?file=app/main.jsx
Once you have set a value, it isn't possible to clear it. Deleting everything in the input sets the value to the full mask. This is different behaviour to the jQuery MaskedTextBox which clears the value if the raw value is empty.
Is this intended behaviour?
Kind regards,
David
Hi all,
I'm just starting out with my trial, so am very much a beginner, hope this isn't a daft question.
I'd like to be able to drag items from a TreeView into some ListBoxes and back out again. The idea is that drag onto list box adds the item to that list, drag from listbox to the treeview will remove the item from the list.
I have got TreeView -> ListBox working by catching the TreeView.onDragEnd event and using document.elementFromPoint() to work out where the item is being dropped. (Perhaps there is a better way to do this too?)
I can't figure out how to detect the drop of a ListBox item outside of the ListBoxes though. There is an onDrop event but it only fires if dropping on a ListBox. If I drag anywhere outside the ListBox I get the "can not drop here" mouse icon".
Is there a way to achieve this?
Thanks for any help!
Colin
Based on the Dataset of Objects example in https://www.telerik.com/kendo-react-ui/components/dropdowns/combobox/binding/, I understand that the combobox value will be the selected object.
For example, if I selected "Football", the value is
{"text":"Football","id":2}
On the submit, is there a way for the values collection to have the "id" value and not the selected object?
Presuming my combobox name is 'sport', I have to use values.sport?.id
That's not horrible, but the part I don't like is initializing the component with a previously selected value.
Is there a way to pass the value of id as a separate prop and have the component find the matching object in the {data} object.
The way I got it to work to have a function that takes the id as an input parameter filter for the matching item. This is passed as the {value} prop.
Thanks
Anthony
Hi there. It looks like the Kendo Grid generates its own tbody element. I have a situation where I'd like to use multiple tbody elements to define a row. W3C says using multiple tbody tags within a table is the correct way to do this. Here is their example: https://www.w3.org/WAI/tutorials/tables/irregular/#table-with-headers-spanning-multiple-rows-or-columns
Is there a way to accomplish this type of thing?
So we have a nested array in our json object that I'm trying to update using Kendo React Forms (See Below).
I've mapped the array and have tried to use name={ExampleArray[index].date} yet can't seem to pull the values in or update them. Is it possible? If so how do I go about doing it?
Thanks.
{
"createdOn": "2007-11-15T17:14:01.763",
"lastUpdatedOn": "2007-11-15T17:14:01.763",
"color": "Green",
"ExampleArray": [
{
"name": "Date Name",
"id": 1,
"date": null
},
{
"name": "Date 2 Name ",
"id": 2,
"date": null
},
{
"name": "Date 3 Name",
"id": 3,
"date": null
},
]
}
When virtualizing the grid, all cells remount during scroll, causing a serious performance issue. How can I stop this from happening?
Here's and example I forked showing the remounting behavior: https://stackblitz.com/edit/react-mu6rlr-ssbgc9?file=app/main.jsx
Hi
I have a use case with a straightforward Grid where my users would like to have actions bound to a double click and a popup-menu on right click.
I only found the onClick handler which of course works, but my users would prefer a double click. The reason they name is that they commonly select and copy data from the grid, which interferes with the onClick behaviour.
Is there some description how to achieve double click and right click behaviour on the Grid?
Thanks!