Using this example https://demos.telerik.com/kendo-ui/dropdownlist/addnewitem and changing the kendoDropDownList to kendoMultiSelect, i receive the error below because the instance.filterInput is not defined on the widget instance. According to your docs these two property configurations are supported. How can I get the multiSelect to have a filter?
DOCS
http://docs.telerik.com/kendo-ui/api/javascript/ui/multiselect#configuration-filter
http://docs.telerik.com/kendo-ui/api/javascript/ui/multiselect#configuration-noDataTemplate
ERROR
Uncaught TypeError: Cannot read property 'val' of undefined
at init.eval [as noDataTemplate] (eval at compile (kendo.all.js:194), <anonymous>:3:196)
at init._renderNoData (kendo.all.js:27300)
at init._listBound (kendo.all.js:33923)
at init.d (jquery.min.js:2)
at init.trigger (kendo.all.js:124)
at init.refresh (kendo.all.js:28807)
at init.d (jquery.min.js:2)
at init.trigger (kendo.all.js:124)
at init._process (kendo.all.js:6965)
at init.success (kendo.all.js:6710)
function saveUserAdministrationGridState(arg)
{
if (isLocalStorageAvailable())
{
// column reordering firing delayed, so we must delay our saving of options
// hack source: http://stackoverflow.com/questions/21270748/kendo-grid-saving-state-in-columnreorder-event
setTimeout(function () {
localStorage[customGridOptionsLocalStorageKey] = kendo.stringify(grid.getOptions());
}, 5);
}
}
This appears to be a bug as the functionality is essentially broken. The validation editors including those shown in the demo, will appear offscreen and inaccessible if in the last visible column in a horizontally scrolling spreadsheet.
See dojo here.
Steps to reproduce:
Expected result:
The buttons should appear on the left of the cell instead of the right if they are not accessible (that is, they fall on the last visible column).
Hi
I have a spreadsheet component, with a datasource. I am exporting a dataset from the spreadsheet, changing it in Excel, and then reimporting it. After I import data, if the imported data has more records than the current dataset, the dataSource is not updated so when I save nothing happens.
In my save, I use dataSource.hasChanges to check if we have changes in the dataset. This is true, even if I have only added a record. However - dataSource.data().length is still the original size. I have tried with dataSource.sync(). Is there something I am missing?