I'm using KendoUploader with autoUpload=false. When the autoUpload is set to false, on bottom side of uploader is displayed button to upload files manually. I would like to ask, if is possible to hide bottom buttons and somehow call some method/attribute of Upload component to start upload with the script. Is it possible?
(I would like to start upload after success submit of Kendo Form).
<Upload
autoUpload={false}
batch={false}
multiple={true}
defaultFiles={[]}
withCredentials={false}
saveUrl={"https://demos.telerik.com/kendo-ui/service-v4/upload/save"}
removeUrl={"https://demos.telerik.com/kendo-ui/service-v4/upload/remove"}
/>Thanks a lot for each help :-)

I just followed the instructions to create a my own new react app that uses telerik reporting viewer, I'v set the rest service and it's working fine , but when I'm trying to load a viewer in the website this error pops up (in the console) , Just followed all the steps in the docs ,and still getting this error , by the way the demo react app works fine for me and loads the report properly
"Uncaught TypeError: perspectiveManager.dispose is not a function
at Object.dispose (telerikReportViewer.js:8168:1)
at TelerikReportViewer.dispose (telerik-report-viewer.js:213:1)
at TelerikReportViewer.componentWillUnmount (telerik-report-viewer.js:105:1)
at callComponentWillUnmountWithTimer (react-dom.development.js:22852:1)
at safelyCallComponentWillUnmount (react-dom.development.js:22873:1)
at invokeLayoutEffectUnmountInDEV (react-dom.development.js:25188:1)
at invokeEffectsInDev (react-dom.development.js:27351:1)
at commitDoubleInvokeEffectsInDEV (react-dom.development.js:27321:1)
at commitRootImpl (react-dom.development.js:26883:1)
at commitRoot (react-dom.development.js:26682:1)"
"
"
I want my user interface to be Kendo UI and be able to pick some input data from the user inputs, save it as a .txt or .csv file, call a Progress ABL via a batch mode in the background, import it into an Openedge table, execute the Progress ABL programs for it, get the outcome and save it as a .txt or .csv, then import the outcome back into Kendo UI for the user to interact with it. I feel this is faster than rewriting all my Progress ABL codes afresh.
Is this scenario achievable?
Regards
Zadock
Hi,
There is an easy way for setting the prop id on rowRender or I have to do that :
id: myId,
...trElement.props,
}

I'm following the example for using a treelist
https://www.telerik.com/kendo-react-ui/components/treelist/
One thing I noticed is when I enter a filter term, the match result could be hidden/collapsed in the child of a displayed parent. Is there a good way to auto expand out and highlight the matched rows?

I would like to render a Field component outside the Form render function, is this possible? I would like to leverage the validator prop/logic that comes with the Field component.
const InputValidationWrapper = (fieldRenderProps) => {
const { validationMessage, visited, enabledAutoComplete, ...others } = fieldRenderProps;
const inputProps = enabledAutoComplete ? others : { ...others, autoComplete: "off" };
return (
<div className="pingora-val-i">
<Input {...inputProps} />
{visited && validationMessage && <Error>{validationMessage}</Error>}
</div>
);
};
const nameValidator = (value) => (!value ? 'Full Name is required' : '');
const App = () => {
return (
<div>
<Field
id={'fullName'}
name={'fullName'}
label={'Full Name'}
component={Input}
validator={nameValidator}
/>
</div>
);
};
Thanks
Hi.
As the example on the documentation pages still uses react router 4 and I had to struggle a bit to make the Drawer component work with version 6, I thought I'd share an example of a possible solution. It's a little hacky because I send all unknown routes to home but it works. :-)
Hope this helps somebody.
https://stackblitz.com/edit/react-kzrru7?file=app%2Fmain.tsx
Greetings,
Bernd