Hi Team,
As Kendo react components supports HTML 5 validations and work across different browsers as well.
Is there a way the styling of validation messages will remain same across browsers without loosing the default validations?
Regards,
Sanjay

Hi Team,
We need to know whether there is any property available for Email control which can validate the specific domains only.
I know this can be achieved via regex but curious to know if there is any out of the box property available since this scenario is common for email controls.
Regards,
Sanjay

Hi Team,
We have requirement where we want to validate some set of controls from one specific button.
<form OnSubmit="handleSubmit">
<Control1 />
<div> // This is specific section like repeater
<Control2 />
<Button2 />
</div>
<Control3 />
<Button1 />
</form>
The requirement is
1. Button1 will validate only Control1 and Control3 but not Control2.
2. Button2 will validate only Control2
I tried to implement this via enclosing Button2 and Control2 inside another form tag but react dom is giving warning of nested form tag.
Please let me know is there any way to achieve this functionality in Kendo React.
Regards,
Sanjay

Hi Team,
We need to know whether there is any way to select multiple items in AutoComplete control. Currently, I can see there is only one option can be selected.
Or there is any alternative way to select multiple items in AutoComplete.
Regards,
Sanjay

Hi,
There is no demo of this functionality.
Can it be achieved? Could you give me an example.
I would do it with .NET Core on the server to save the files there.
In a nutshell I would like to have a photo picker where I can insert a photo in the Editor content from photo gallery or upload a new photo there, send it to the server (as with any other upload) and display it with relative local path.
Thnx!
Sanja

hello
i have some questions about kendo react grid
1-how to hide some columns
2-how to auto adjust width columns to content size
3-dynamically refresh kendo grid data
4-dynamically
thanks...

Hi,
I'm currently building a form which includes some basic text inputs and a RTF editor. I use the KendoReact Editor to offer the cool control with nice copy and paste and formatting options.
I understand from your documentation that this control does not support Html5 form validation. In particular, I need to make this rte field required. As the rest of the form follows the html5 form validation (with all the nice UI hints if you try to submit) I'm looking for a way to accomplish the same with the Editor control. Has anyone accomplished this before?

Hi,
I want to use filter from datatools but I see no option for formating NumericFilter and DateFilter or adding other props like min/max to filters.Is it not possible to customize filters? https://www.telerik.com/kendo-react-ui/components/datatools/filter/

Hi,
I am working with spreadsheet wrapper component with React.
In my scenario, I want to bind some user data, something like { a : 1234 } to a specific cell or a row or a column, is it possible? Even if I can just bind a string instead of an object that will be okay. Also, I want to bind that data but don't want to show it to users, it should just be accessible through the code.
I tried looking into the API references but not able to find anything like that.
If it is possible, can I get a small example for it?
Thank you.