
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


I have a Kendo UI treeview which contains some node that i load children on expand by firing a ajax call and returning a data array. This works fine and i get the data and it binds to the tree.
However the issue occurs after the first expand of a node, when i expand the node first time the tree behaves correctly and everything is fine, however if i collapse and expand the node again the tree does not push the other nodes down and the expanded node overlaps all other icons in tree.
Here is the code that i use to build the tree
01.$('#all-library-tree').kendoTreeView({02. loadOnDemand: true,03. dataSource: _masterTreeViewMasterObj.sort().reverse(),04. expand: function (e) {05. var treeView = $('#all-library-tree').data('kendoTreeView');06. var dataItem = treeView.dataItem(e.node);07. dataItem.load();08. 09. if (dataItem.children.data().length !== 0) return;10. 11. 12. if (dataItem.id === -1) {13. //get unused data14. GetUnUsedChildrenForRHSTree(dataItem.text, dataItem.children);15. } 16. 17. }18. });
Hi,
I am currently using the <A href> tag button as a template feature for column cells.
I want the button and the value I entered directly in this cell to be displayed at the same time.
[Value {button}]
Think of {} as a button.
The ideal solution is
[Value | {button}]
I want to have a value and a button area in one cell.
No matter how long the value is, it must not extend beyond the button area.
But the most important thing is to make the value visible first.
The current value is entered, but because the transparent area of the small button covers the entire cell (which is my reasoning), the value is hidden and invisible.
(Click the cell for correction and you will see the value. If it goes out of focus, it will be hidden again.)
How can we solve this?
columns: [ {selectable: true, width: "35px"}, {field: 'fnProdInOutSeq', hidden: true}, {field: 'lotNo', title: 'ìž…ê³ Lot', width: 100}, {field: 'prodNm', title: '품명', width: 100, template: "<a href='javascript:' class=\"k-icon k-i-search\" onclick='return fnObj.gridView03.gridFn.searchComp(\"#= prodNo #\")' style='float:right'> </a>" }]
Hi All,
Is there a way to make the control just have "one" drop-down that allows the date and time to be picker in one go? Or do we have to create our own?
Thanks,
Andy
