Hello,
I'm using kendo.drawing.drawDOM and kendo.drawing.exportPDF, to print some content. I have few multiline textareas there, and unfortunately they are not displayed correctly in the PDF (see attachment: there's one of textareas at the top, and below there's what I get on the pdf).
Is that maybe a known issue? Could I handle it maybe by configuring drawDOM or exportPDF functions?
Thanks a lot,
Regards,
Pawel
Hello,
I'm using the kendo scheduler and have defined two resources that will be populated with remote data.
The first one is "groups" and the second one is "members".
The "members" list should be depending on the selected value of the "groups". So for instance, if I choose group1, I would like to populate the "members" resource with the people in that group.
I would like to know the event fired with a new value in "groups" is selected. How can I bind the resource to kendo DropDownList?
Hello,
Is it possible to have a customize template of subMenu in ContextMenu using AngularJs?
In a master child Kendo Grid in the child grid that's been configured for edit/create/celete how do we know if are editing or creating ? For a single level grid we can handle it this way and set the window title.
edit: function(e) {
if (!e.model.isNew()) {
$(".k-window-title").text("Edit ");
// Disable the editor of the "id" column when editing data items
var numeric = e.container.find("input[name=id]").data("kendoNumericTextBox");
numeric.enable(false);
}
else{
$(".k-window-title").text("Create");
}
How do we do the same in a child grid ? ( http://demos.telerik.com/kendo-ui/grid/hierarchy ) . Here
$("<div/>").appendTo(e.detailCell).kendoGrid({
HI,
When I am trying to sort list view using kendo sortable drag & drop, list item hangs in between and stays there itself on the page and it is visible through out app in all views even if I leave the page where text hangs happen. After debugging I found that sometimes index of dragged item is coming as undefined or e.item.data("uid") is coming as undefined. Please check into this.
Thanks,
Velu
I have a grid with incell editing with batch update set to true.
I have a custom command that synchronizes the data off two columns like this:
command.Custom("Sync Dates").Click("syncDates");
function syncDates(e) {
var dataItem = this.dataItem($(e.currentTarget).closest("tr"));
dataItem.set("Date1", dataItem.Date2);
}
What is the best way to set the dirty flag on the Date1 cell?
I have a Gantt chart which is instantiated using the AngularJS directives.
I noticed that when I run my Gantt page in a mobile device (phone or tablet), I have this exception:
Cannot read property 'bind' of undefined at kendo.ui.GanttTimeline.r.extend._tooltip
It’s a tooltip exception. I tried to put the tooltip property in the ganttOptions as visible false, and it works, but if I put the tooltip as true, it throws this exception. I have another Gantt in my application that doesn't use the tooltips and it's working fine on phones or tablets.
I don't think I'm missing any library references:
<script src="/scripts/bower_components/kendo-ui/js/kendo.core.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.color.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/cultures/kendo.culture.fr.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.drawing.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.pdf.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.data.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.popup.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.userevents.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.draganddrop.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.resizable.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.window.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.dom.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.touch.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.columnsorter.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.calendar.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.datepicker.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.timepicker.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.datetimepicker.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.numerictextbox.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.validator.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.binder.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.editable.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.gantt.list.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.gantt.timeline.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.grid.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.gantt.min.js"></script>
<script src="/scripts/bower_components/kendo-ui/js/kendo.angular.min.js"></script>
How should I proceed to make it work?
How can we sort the treelist by using natural sort? Or customize the sort method?
We need the TreeList should be sorted like that:
Folder 1
Item 5
Item 6
Item 50
Folder 2
Item 3
Item 4
Item 30
Folder 10
Item 1

Hello,
I am using a grid with pager that shows the current page number instead of drop down list.
This button disappears in 1024px screen width and other pager buttons round border shapes are changed.
I need exactly the same layout as in wider 1024px screens.
Please see the attached image.
