I have 2 fields in my form.
the first field is using NumericTextBox to set a year
the 2nd field would be a date picker with date input to select the date, the format would be dd MM
I would like to check if it is possible, onblur of the numeric textbox would set the date-picker selectable dates based on the year entered in the first field
is it possible to change the behavior to have the item just selected instead of filtered to give the ability to the user to select the value from the whole datasource?
now the user just see limited set of data according to the parent selection
Hi,
We're not sure if this is a bug or feature.
Using ListView and the method setDataSource with the built-in paging. The ListView appears to change data sources but the paging doesn't. Tried using the refresh() method but same result.
We worked around it by using the Pager widget and ListView without the bulit-in paging and this seems to work okay.
It's not a problem. Just found it weird that we do the same for a Grid on the same page using the method setDataSource and the data source changes okay along with the paging.
Any thoughts?
Thanks// First load
var dataSourceListView = new kendo.data.DataSource({
data: dataSource,
pageSize: 8
});
$("#listView").kendoListView({
dataSource: dataSourceListView,
dataBound: function () {
},
template: kendo.template($("#template").html()),
pageable: true
});
// Not first load
$("#listView").data("kendoListView").setDataSource(dataSourceListView);
//$("#listView").data("kendoListView").refresh();Hi,
Love the search bar addition to the Kendo Grid. Thank you!
The underlying DataSource is set to serverFiltering = true and so I was wondering if it was possible to only begin the search once the user has entered 3 characters or more? The current behavior is that calls to the back end are made as soon as the user starts typing in the search bar but I wanted to see if there was a way to delay that until after the user enters 3 or more characters.
I guess I could achieve this by defining my own read method under the underlying DataSource transport but I wanted to see if there was a more elegant way to achieve this.
Regards,
I was trying to implement Kendodropdowntree , I came across following situation which I am not able to understand
$(dropdowntree).kendoDropDownTree({
placeholder: "Select ...",
height: "auto",
dataSource: //HARD CODED VALUE GOES HERE
});
}
Above example will work fine when , I hard code those datasource values. When I try to pass some variable there it will not work
var datatobind= somedata // data in exact format it is expected
{
$(dropdowntree).kendoDropDownTree({
placeholder: "Select ...",
height: "auto",
dataSource: datatobind
});
}
Even I tried passing variable of following type
var dataSourcetype = new kendo.data.HierarchicalDataSource({
data: datatobind
});
{
$(dropdowntree).kendoDropDownTree({
placeholder: "Select ...",
height: "auto",
dataSource: dataSourcetype.options.data
});
}
But even above also doesn't solve problem, I am not able to get it , why passing exact same variable is not binding to data source.
Hi,
I've got an easy question, but I can't figure it out how it works.
My grid depends on another grid. If I select an item in grid A, grid B should always show page 1. Where and how can I set that page 1 is displayed? I tried it in DataBound, but it leads to a full call stack.
I would appreciate an example.
Thanks
Hello
I would like to use jQuery ListView to display products for an eshop solution.
Is it possible to nest a jQuery Rating Widget inside the ListView template and set the value when binding the data to the ListView?
I use ASP.Net Core with RazorPages.
Thank u for ur support!
Hi - we have hundreds of thousands of users that access PDF documents using our products, which use the KendoPdfViewer for jQuery to display PDF documents in a web Application. We are receiving reports that some users are seeing pixelation, or dropped pixels, in many PDF documents. If they download the document and open it in a viewer of their choice, it is fine. Incidentally, I see the same pixelation on your demo page for KendoPdfViewer (https://demos.telerik.com/kendo-ui/pdfviewer/index). I have one machine in my possession (Windows 10) that seems to have the problem. I have tried several different browsers and the result is the same. I have a Windows 11 machine that works fine. I tried upgrading pdf.js to the latest version, and updated Kendo to 2022.3.1109 - only slight improvement. I uploaded screenshots highlighting the issue both on Telerik's page and ours.
Has anyone else encountered this? Did you find a solution?
We love Telerik but will need to find an alternative soon if we cannot resolve this problem.
Thanks!