$("#myPercentageChoice").kendoNumericTextBox({ format: "p1", spinners: false, value: 0, decimals: 3});Hi,
I'm using 2019.3.1023 version. I have a treelist which retrieving data from remote source. When user select a time range in a list the treelist will be triggered to re-fetch the data with the new selected parameter. The datasource is updated succussfully and treelist is refreshed. But the pager is not updated accordingly.
The treelist configuration:
$('#gridtable').kendoTreeList({ autoBind: false, dataSource: { transport: { read: { url: top.$.rootUrl + '/PPM_Contract/Contract/GetList', dataType: "json", data: function () { return { queryJson: JSON.stringify({ // parameters send to remote source }) }; } } }, schema: { data: "data", total: function (response) { return response.data.length; }, model: { id: "F_Id", parentId: "externalId", expanded: true, fields: { // some fields setting } } } }, filterable: true, sortable: true, resizable: true, selectable: true, pageable: { pageSize: 100 }, dataBound: function (e) { // some logic for styles }, columns:[ // some columns ] });
The trigger of refreshing the treelist:
// some parameter assignment// then call read method on datasource$("#gridtable").data("kendoTreeList").dataSource.read();
With first selection of the parameter, 124 items are returned and 2 pages initialized, which is correct (attached as 1stTry.png).
With second selection, 248 items returned, total number is updated but the pager is not (should be 3 pages but stays as 2. Attached as 2ndTry.png).
How to refresh the pager with datasource?
Thanks.
Hi,
We need the below option to be implemented on the Kendo pie chart.
1) How do we merge the below 2% series value in other series value? Video link mentioned below for your reference.
2) We need to show the merged value data in the tool-tip. I have added the video link on the pie chart working and screenshot of the code & data-source. Can you please check and help with this?
Video link (old&new) , screenshot 1 , screenshot 2
Hello,
I often use custom editors.
But when using the dropdown list
$ ("# ..."). data ('kendoDropDownList');
I need to access the editor in the form, but I don't know what goes into # ...
If you created this editor statically, you would have an ID, but if you create a custom one, you will not have a separate ID.
My custom editor looks like this, and the ID I tried was the same as the string output in options.field.
dayDropDownEditor : function (container, options) { $('<input id="operDay" data-bind="value:' + options.field + '"/>') .appendTo(container) .kendoDropDownList({ suggest: true, dataSource: [ {name:'월', operDay: '월요일', isDeleted: true }, {name:'화', operDay: '화요일', isDeleted: false }, {name:'수', operDay: '수요일', isDeleted: true }, {name:'목', operDay: '목요일', isDeleted: false }, {name:'금', operDay: '금요일', isDeleted: false }, {name:'토', operDay: '토요일', isDeleted: false }, {name:'일', operDay: '일요일', isDeleted: false } ], dataTextField: 'operDay', dataValueField: 'operDay', valuePrimitive: true, select: function(e){ alert(JSON.stringify(options.field)); }, change: function(e) { }, template: kendo.template($("#template").html()) });}
"fn1": function() { var dropdown = $("#operDay").data("kendoDropDownList"); var oranges = dropdown.dataSource.get(2); oranges.set("isDeleted", true); }What data should be inside # ... for me to access .data ('kendoDropDownList')?

After removing an item in the list box it does not focus on the first item by default, We need an option to focus on the first item. Attached screenshot & video link for your reference. Please check
Video link and screenshot

Hi Developer,
How to dynamically increase rows after I have created the Kendo SpreadSheet. The default row number is 200. When I use insertRow, the sheet only shift row next, but the rows still 200 and not 201.
Best regards,
Sang
