$(
"#toolbar"
).kendoToolBar({
items: [
{ type:
"button"
, text:
"Prodaja"
, imageUrl:
"Image1.png"
},
{ type:
"button"
, text:
"Oddaja"
, imageUrl:
"Image2.png"
}
]
});
So this is odd...
My markup has radio buttons in each sortable item. I can select them no problem, but once I start to drag to sort, I can see the hint and placeholder have lost the selection, and on drop it's gone as well.
WIERDER if I inspect the markup in chrome on the dropped element I still to see the "checked" attribute there... but no selection, jQuery detects no selection as well.
Checkbox lists however seems perfectly fine
Hello,
I noticed, that I can't delete tags from the MultiSelect in the DropDownTree when I use serverFiltering in a HierarchicalDataSource. The following Dojo shows a minimal example of this: https://dojo.telerik.com/epiXuPUK/2
This can be reproduced by the following steps:
Is this a known bug or did I forget to configure something? If its a bug, do you know a work-around for this?
Thanks.
Hello Telerik Team,
I have an issue with showing the aggregate value in bar charts.
Could I show the aggregate values of bars like the attachment shows?
The attachment used another UI and I want to replace it with kendo UI.
Thank you!
My goal here is to use a diagram that will save the coordinates of the diagram's shapes to a table in a SQL database. Then have a datasource that reads from that table and display the shapes in the same position the next time the user accesses that diagram.
I'm trying to test this out by setting up a static list of data in my Controller and accessing that data in the diagram's data source. In my Kendo Diagram I am using shapesDefaults.visual to set a visual template that then grabs it's x and y values from the item in the data source.
The shapes on the screen then show correctly positioned on the diagram, but everything from the content of the shapes and the area that interacts with the shape are all stacked in the 0,0 position in the top left corner of the diagram.
I've included my code in the attached zip file, as well as a screenshot of the resulting diagram.
What am I missing to get then entire diagram shape, content and interaction ability to position to my coordinates?
I am trying to use kendo Jquery Date Picker.
I am referrring https://docs.telerik.com/kendo-ui/controls/editors/datepicker/overview.html for the same.
But instead of default k-i-calendar class I want to use k-i-calendar-date class. But I am not able to change.
Icons: https://docs.telerik.com/kendo-ui/styles-and-layout/icons-web
https://docs.telerik.com/kendo-ui/api/javascript/ui/button/configuration/iconclass in this example it talks about changing default icon class.
$("#button").kendoButton({ iconClass: "fa fa-male"});
I tried using the same for my date picker but it doesnot work.
kendo.jQuery("#ang_layout1_asof_sdate").kendoDatePicker({
iconClass: "k-icon k-i-calendar-date"
});