I need to find refresh values of DropDownList programmatically. That's what I tried:
let nameDropDownList = $('#Configs').getKendoDropDownList();
console.log(nameDropDownList);
console.log(nameDropDownList.datasource);
nameDropDownList.datasource.read();
nameDropDownList.value(currentConfigName);
When read is called, I get:
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'read')
Log shows me, that datasource is undefined.
DropDownList definition: @(Html.Kendo().DropDownList()
.Name("Configs")
.DataTextField("Name")
.DataValueField("Name")
.Filter(FilterType.StartsWith)
.DataSource(s =>
{
s.Read(r => r.Action("Read", "FilteringTable"));
}))
I would like to store filter's state in url. The url should be formed by pressing apply button. When the page with url containing filter information is opened, the filter should consume this information and display on the page.
How can I create a custom chart legend. Like this checkbox grid
I've seen Signature component and it's documentation but I haven't seen how to save the signature in DB.
Since there's no SignatureFor component to bind a model attribute to it, how to save a signature as a model attribute?
How can you set the default Zoom Level on the PDF Viewer? It defaults to "Automatic Width" but I want it to default to "Fit to Width".
<kendo-pdfviewer name="pdfviewer">
<pdfjs-processing file="@(Url.Action("GetReportDownload", "Downloader"))"/>
<toolbar enabled="true">
</toolbar>
</kendo-pdfviewer>
Hello,
im using kendo-react with .net core integration.
When i want to filter a Grid the query generated by the method: `toDataSourceRequest()`use the sql function LOWER to compare a string column.
With this behaviour its impossible to match only the exact rows. I want to disable this function and use the `=` operator in SQL.
I think if i use: `ignoreCase: false` in the frontend and then serialize with: `toDataSourceRequestString` from the `@progress/kendo-data-query` package, the `DataSourceRequest` will contain the ignoreCase prop and the toDataSourceRequest will do the job.
But the ignoreCase:false prop is not added to the query param,.
Any suggestion? Its not possible to use ignoreCase with the backend integration and only works in frontend?
- https://codesandbox.io/s/vigorous-bush-s2fgnc => ignore case working when the filter is in frontend.
- https://codesandbox.io/s/nervous-platform-9nr2q4 => with backend not working
Thanks!