Hi,
Telerik.UI.for.AspNet.Core v2023.2.82 is still referencing multiple deprecated MS packages, all of the dependencies that start with 'Microsoft.AspNetCore' are version 2.1.0 and are showing as Deprecated by Microsoft.
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>