When you add a KendoReact Editor component as a child of a Form component, the toolbar buttons submit the form. This is actually a defect in my opinion, so I filed a bug on it. The buttons are rendered as html button elements without a type attribute, which means they default to submit buttons. I would still like to use this Editor, so until that is fixed is there currently a way of overriding how toolbar buttons are rendered?
Here's the bug I filed: https://github.com/telerik/kendo-react/issues/219
I have products.json file with all categories as object. It works fine if the data format is in the below link but it fails if categories in that json is an array. I am trying to create a react grid with one column from array of category items.
Example: https://stackblitz.com/edit/react-txwobq?file=app/products.json
It works fine with categories block as
<Column field="Category.CategoryName" title="CategoryName" />
in grid code with the below json object
"Category" : {"CategoryID" : 1,"CategoryName" : "Beverages","Description" : "Soft drinks, coffees, teas, beers, and ales"}
But I get the external api in array format for categories like
"Category" : [{"CategoryID" : 1,"CategoryName" : "Beverages","Description" : "Soft drinks, coffees, teas, beers, and ales"}]
I tried reading this value in react kendo grid like this but no luck. What was the mistake I am doing?
<Column field="Category[0].CategoryName" title="CategoryName" />
Hi,
I see no way to modify the group header template. I don't want to have to alter our data (which I've seen as a proposed solution) or use HeaderCell's, but instead display the total of items grouped in the header. Even better is a way to change the group header title to whatever title we like.
For example, if our dataset contained customers and their orders, we would want to group by customer name and have the number of their grouped orders in brackets in the header title, e.g.:
Customer 1 (3)
Order 1
Order 2
Order 3
Customer 2 (2)
Order 4
Order 5
etc. Is this possible?
Hello,
We are fetching records from server and creating a dropdown list and would like to set the first item in that list as the default selected item in the dropdown. The example in the documentation only shows a hardcoded list with a "Select sport..." default item.We tried to set the default item to the first element in the async list, but the first element will show up twice in the dropdown! Please help:
import React from 'react';
import ReactDOM from 'react-dom';
import { DropDownList } from '@progress/kendo-react-dropdowns';
class AppComponent extends React.Component {
sports = [ 'Basketball', 'Football', 'Tennis', 'Volleyball' ];
render() {
return (
<DropDownList
data={this.sports}
defaultItem={this.sports[0]}
/>
);
}
}
ReactDOM.render(
<AppComponent />,
document.querySelector('my-app')
);
Hi, I am using the Autocomplete Dropdown component and I should not show the dropdown if there is a special character typed and instead display a message. I achieved that but I am unable to fix the dropdown display. Can someone help me out please?
Basic behavior to achieve is dropdown shouldn't be shown initially, and should show ONLY when user starts typing in something and do not show dropdown in case user enters special characters and show a message.
P.S: I might have multiple autocomplete on a page. Any way to simplify my code?
Stackblitz: https://stackblitz.com/edit/react-dvpfg5?file=app/main.js
Hi Stuff,
I have two questions, 1.Is there a way I can make the upload file to be a hyperlink? Now I set the autoUpload to be false. So once the file uploaded. The file name will be clickable. 2. Can I put a placeholder in the drag and drop box. such as the attachemnt picture.
<Upload
batch={false}
multiple={false}
onAdd={this.handleAddFile}
files={this.state.files}
autoUpload={false}
withCredentials={false}
onStatusChange={this.onStatusChange}
onRemove={this.onRemove}
restrictions={{
allowedExtensions: ['.pdf']
}}
saveUrl={'https://demos.telerik.com/kendo-ui/service-v4/upload/save'}
removeUrl={'https://demos.telerik.com/kendo-ui/service-v4/upload/remove'}
/>
Thank you.
Hi,
I want to add focus event on NumericTextBox.Can you please suggest how to add focus event to NumericTextBox as i have to trigger some event based on focus.
please find the below implementation i need to achieve:-
<NumericTextBox type="text" name={name} className={cssClass} onChange={(ev) => this.onChange(ev) onFocus = {this.onFocusNumericGroupInput} />
onFocusNumericGroupInput = () => {
console.log("focus event fired")
}
Hi,
Is there an option to prevent minus symbol in numeric text box?
Regards,
Balaji
Hi,
I am using Kendo react autocomplete search box in our project. (import { AutoComplete } from "@progress/kendo-react-dropdowns";)
Whenever user starts typing in search textbox its shows best match from results highlight with box border. I want to remove this heighlight from best match which in middle of search result and when user starts navigating using keyboard it should start from 1st item in search results. Is there any way to achieve this ?
Also for filter I am using operator: "contains", Is there any way to order result of filter as best match on top and then rest of matches.
I have a need to refresh a currently displayed KendoReact Grid with the latest data coming from the server (i.e. real time changes made by others). Is this possible currently with KendoReact's Grid component? If so, is there a demo that I can review the code to gather how to do this?
Thanks.
Jim Minnihan
SKF, Inc.