Hello,
I'm my angular app I'm trying to achieve drag and drop from treeview to grid.
I have on the sidebar a list of items in a treeview and what to drag them to the grid. Even if this feature is not provided out-of-the-box, I could implement it if I had on the drop event, the id of the dragged item and the position where it is dropped.
Is this possible?
Thanks in advance
I am trying to export a <ul> element in pdf using the drawDom.drawing.pdf.saveAs(...) method (kendo.drawing.pdf.saveAs(grid, test.pdf"))) with the following parameters :
grid.options.set("pdf", { forcePageBreak: ".pageBreak", allPages: true, avoidLinks: true, multiPage: true, margin: { left: "20mm", right: "20mm", } });
But even with the class "pageBreak" being properly added to my elements it still doesn't work properly. My pdf page doesn't separate into different pages. And if I add a paperSize:"A4" for example, the pdf becomes blank.
Hello, I'm having trouble using Kendo-grid. I don't know how to make my app remember the column reordering positions. As soon as I refresh the page, it resets to the old value. I haven't found anything even remotely useful on SO. The delete column works fine, when i delete a column it stays deleted until i decide to restore it applinked app. I know there's an event called ColumnReorderEvent, but I don't know how to use it in a way to save the reordered grid as the new default for the user that reordered it.
I have an element need to inited both Draggable and Toolips, and I want to prevent tooltips show event when dragend, I use e.preventdefault() , but it don't work.
The version I'm using is 2017.3.913
For some reason, I can't update to the latest.
My html
<div class="edit-tooltips" style="left: ${xPx};top: ${yPx}">
<div class="sensor-point new-point" > content
${ index }
</div>
</div>
My js
$(".edit-tooltips").kendoTooltip({
autoHide:false,
showOn: "click"
.....
})
$(".sensor-point").kendoDraggable({
hint: (element)=>{
return ....
},
dragstart: (e:any)=>{
},
dragend: (e:any)=> {
....
e.preventDefault() // this dot'n work, tooltips show event will still be triggered
}
})
I have a grid with multiple selection with checkboxes. I need to be able to deselect the checkbox on a single row programatically. I am able to turn off the row selection class using
$(row).removeClass("k-state-selected");
but I have so far been unable to uncheck the corresponding checkbox.
Thanks in advance.
Eric Katz
Hi,
We want multiple tabstrip depending on user selection. In that tabstrip want multiple grid. Is there sample code in angularJS for this problem.
Thanks!
Hi,
In the gridconfig I use the following code:
group: function (e) {
if (e.groups.length) {
localStorage["ndo-grid-options"] = kendo.stringify(e.sender.getOptions());
} else {
localStorage["ndo-grid-options"] = '';
}
},
var options = localStorage["ndo-grid-options"];
var grid = $('#grid').data('kendoGrid');
if (options) {
grid.setOptions(JSON.parse(options));
}
But it is not working 100% as expected. Probably I am doing something wrong. Please take a look at the Loom video below.
https://www.loom.com/share/89708bc87e5449ecb55f4eb8a4b9637e
Thanks, Roel
Hi Team,
When we open filter window from column filter button, it shows different input controls without any labels, as per accessibility guideline "3.3.2 Label or Instruction Level A" every input control needs to have a visible label, just having the placeholder text is not enough.
Can I request you to take this up in the product?
Hi,
Can I export to Pdf an Icon which exists on my column in gantt chart?
Thanks.
Hi Team,
How can we add tooltip to the sort icon of the grid column header.
thanks