Hello!
I could not manage to implement a combobox widget with virtualization if the text/value fields are set with values which are not in the datasoruce:
Here is an example code:
$("#orders").kendoComboBox({
template: '#= OrderID # | #= ShipName #',
dataTextField: "ShipName",
dataValueField: "OrderID",
text: 'Not in the list',
value: 0,
virtual: {
itemHeight: 26,
valueMapper: function(options) {
$.ajax({
url: "https://demos.telerik.com/kendo-ui/service/Orders/ValueMapper",
type: "GET",
dataType: "jsonp",
data: convertValues(options.value),
success: function (data) {
options.success(data);
}
})
}
},
height: 520,
dataSource: {
type: "odata",
transport: {
read: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Orders"
},
pageSize: 80,
serverPaging: true,
serverFiltering: true
}
});Requirements:
We have to create a Kendo Ui JQuery Wizard with dynamic number of steps. We want to develop the registration page exactly like:
But it has to be in Kendo UI JQuery Wizard. Can you please guide me how to achieve this. I have tried the following code but it is not working.
Please see the attached code.
Thank you,
Gururaj
would like to check if it is possible to style the upload control to as follows
when no file selected

after file selected

Hi there,
Legacy PivotGrid does not support special characters in the column field headers (and possibly elsewhere), e.g. '&'. Is there a recommended escaping strategy - for example if I have a 'you & me' string, how do I transform it? and should I do it before datasource-ing the Pivot or in a header template?
(Looks like PivotGrid V2 does support this out of the box)
Thanks,
Georgi

Hi,
When I tried to filter the grid by pressing the buttons on top of the grid, the filtering does not appear to work.
I just dont know where I went wrong. I have done quite a few of them without issues, but on this one, i cannot see where the problem is. I have now triple check the code and I still can't see it!
Adding here a link to the dojo: https://dojo.telerik.com/@galedin/EXAZIJIx
Thanks,
Please, look at here:
https://dojo.telerik.com/uXaWUMuz
I'm trying to trigger the "change" event of my select.
data-bind="select: onSelect"
But, as seen from the js console, "select" returns an error and "change" is not supported.
I tried with
data-bind="events: { select: onSelect }""Click" works fine but it not exactly what i want...
Can you help me?
Many thanks ☺
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();