Hi,
I have managed to add a shape to my diagram doing the following:
<button onclick="addValueCheck()">Add Value Check</button>
function addValueCheck() {
var shape = new kendo.dataviz.diagram.Shape({
type: "rectangle",
width: 240,
height: 67,
stroke: {
width: 1,
color: "#e8eff7"
},
fill: "#e8eff7",
editable: true
});
var diagram = $("#diagram").getKendoDiagram();
diagram.addShape(shape);
diagram.bringIntoView(diagram.shapes);
}
The shape is added to the diagram visually but when I try and click it I get a Javascript error. I have attached the page I am working on and the javascript error.
Inline editor's toolbar is not resized or moved with the editor when browser window is resized.
The issue is reproducible on demo page: http://demos.telerik.com/kendo-ui/editor/inline-editing. To reproduce just make toolbar appear and then resize browser window.
Can it be fixed / worked around?
Hello, I've faced with issue when mousewheel scrolling doesn't work for categorized bar chart/column chart. I believe that can be related to some options combination. Could you please take a look?
Please see example http://dojo.telerik.com/ataZe/2
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?