I use Kendo UI diagram to represent a BPMN diagram (activity flow).
I also use Angular.
How can I bind an array of objects to the shapes Data Source, aka, every change to this array will mimic the same change in the Kendo UI diagram?
**Update**:
I found an example **without** Angular JS: http://dojo.telerik.com/ILUCOQ

Thank you in advance for any feedback!
I am attaching some sample code where I am binding data with grid; then setting the groupable option to true. When I intend to use the group column two things happens. One it displays the field name and not the title name, and the most important part it returns nothing.
Rocio
After hiding the Detail expand column the columns are no longer resizable, they do not even show the resize mouse over.
This is all it takes to break it:
dataBound: function(e){
$("#grid").find(".k-hierarchy-cell, .k-hierarchy-col").hide();
}
If instead of hiding the columns I set their width to 1px it will work. I was hoping for a better solution to hiding the column and still allow the columns to be resized
here is the hacky working solution
var cssObj = {};
cssObj.width = "0.5px";
var columns = $("#grid").find(".k-hierarchy-cell, .k-hierarchy-col");
columns.css(cssObj);
columns.children().hide();
here is a dojo representing the problem.
http://dojo.telerik.com/@Delta/azaYU

Hi,
I've noticed that the 'Clear' button is no longer visible for the Combo Box. An example can be found within the API, http://docs.telerik.com/kendo-ui/api/javascript/ui/combobox#configuration-clearButton.
Changing the 'clearButton' attribute to true or leaving it out has no affect.
Please Advise.
Thanks,
Grant

I have a grid column with a mouseover tooltip based on data from other columns using a client template javascript function.
When the users load their own options using a setOptions function, the tool tip disapears from that column when the setoptions method specifies a different column order.
I'm seeing this with different tooltip methods: the kendo tooltip widget, the bootstrap data-toggle widget and just having the mouseover of the title on the cell. Oddly the background color that is also dynamically applied via the same client template function is preserved.
Any explanation for this behavior?

Hello,
I have ViewModel that has Array. "TicketVMList" .
Code:
TicketviewModel= kendo.observable({
TicketVMList: @Html.Raw(Json.Encode(Model)),
GetTicketNumber: function(e) {
debugger;
GetTicketNumberProcess(e);
},
OnTicketTstCheck: function(e) {
debugger;
OnTicketTSTCheckProcess(e);
} });
Initially it bind using :
kendo.bind($("#TicketItemContainer"), TicketviewModel.TicketVMList); //works well
but there is click event on which i am making ajax call and i send this TicketVMList and it load some values inside it and send in response. On success i have tried various ways to refresh UI with new response that i received ( TicketItemContainer is Div that i am binding to )
success: function (result) { debugger; //kendo.unbind($("#TicketItemContainer")); //kendo.bind($("#TicketItemContainer"),result); kendo.unbind($("#TicketItemContainer")); TicketviewModel.TicketVMList = result; kendo.bind($("#TicketItemContainer"), TicketviewModel.TicketVMList); //var vm2 = kendo.observable(result); //$.extend(TicketviewModel.TicketVMList, vm2); //kendo.bind($("#TicketItemContainer"), TicketviewModel.TicketVMList); kendo.ui.progress($("#TicketItemContainer"), false); },
Even have tried commented but it work.

We are using version 2017.2.504
And I am trying to set the text on the Clear button without success. The other buttons are getting the correct text. Below is the configuration used:
async: {
saveUrl: "save",
removeUrl: "remove",
clear: "clear",
autoUpload: false,
allowmultiple: true,
batch: false },
template: kendo.template($("#fileTemplate").html()),
localization: {
select: $scope.translation.SelectFiles,
dropFilesHere: $scope.translation.DropFilesHere,
headerStatusUploading: $scope.translation.Uploading,
headerStatusUploaded: $scope.translation.Done,
remove: $scope.translation.Delete,
clear: $scope.translation.Delete,
uploadSelectedFiles: $scope.translation.UploadFiles
},
