Hi.
Can I use not number type for "id" field for dependencies and tasks? Or It must be number type?
For exemple guid as "dbaa0c8b-e188-4e83-8e14-b0b41dd12f0e".
And this my object for dependency:
"{
"id":"dbaa0c8b-e188-4e83-8e14-b0b41dd12f0e",
"type":1,
"predecessorId":"01415eab-f852-4cd8-af5e-4be43bba1dc2",
"successorId":"f13e95f2-402a-4819-8137-3977f31eeb5e"
}"
Thank you.
Hey,
i have a Problem with kendo grid and seting up inital Page.
Initial situation:
I have a Grid with many entries, one of them is the right one. On wich Page this entry is i dont know.
What i have tried:
in the databound event i identify the Item(Object) on which page it is (loop over the datasource) after this i want to set the initial page, but if i use dataSource.page(index) javscript shows error -> "too much recursion".Where to set the initial Page?
I'm using JSP and Jquery
Thanks for help.
{ "telephone":"4215278204", "parts": [ { "partNumber":95412335, "partName":"Widget 1" }, { "partNumber":95417256, "partName":"Widget 2" }, { "partNumber":12655026, "partName":"Widget 3" }, { "partNumber":12638611, "partName":"Widget 4" } ], "supplierCompany":"ACME, INC.", "supplierLocation":"Austin, TX", "description":"Goods, etc.."},How I can call create new row editor template in popup from a button outside a Grid instead of calling the default button in Toolbar
ToolBar(toolBar => { toolBar.Create(); })
Thanks
$("#chart").kendoChart({ title: { text: "test chart" }, legend: { position: "bottom" }, seriesDefaults: { type: "area", area: { line: { style: "smooth" } } }, series: [{ name: "Licznik 1", data: [7, 12, 11, 13, 13, 17, 16, 15, 17, 10, 5, 5, 4] }, { name: "Licznik 2", data: [17, 26, 30, 31, 31, 27, 24, 33, 30, 19, 16, 16, 12] }, { name: "Licznik 3", data: [3, 3, 5, 6, 6, 5, 5, 6, 6, 5, 3, 3, 1] }, { name: "Licznik 4", data: [7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7] }], valueAxis: { labels: { format: "{0} kwh" }, line: { visible: false }, axisCrossingValue: -10 }, categoryAxis: { categories: ["08:00", "09:00", "10:00", "11:00", "12:00", "13:00", "14:00", "15:00", "16:00", "17:00", "18:00", "19:00", "20:00"], majorGridLines: { visible: false } }, tooltip: { visible: true, format: "{0} kwh", template: "#= series.name #: #= value #" } });My Kendo Chart is located within a div. That div currently has a title tag on it. The issue is that the tooltip for that title tag shows on mouse hover over the div area, but it is interfering with the chart tooltip (e.g. pie chart tooltip for a pie piece). It is not possible for me to remove the title attribute from the enclosing div because of 508/WCAG requirements. I'm hoping I can use Kendo's Tooltip widget to always show the tooltip at the top of the div, regardless of where the mouse is located within the div. If so, please provide the API usage to make this possible.
Thanks,
--Ed
Hello,
Is it possible to extend the base widget "kendo.ui.Widget" ?
I tried the following, but it doesn't work:
var ExtendedWidget = kendo.ui.Widget.extend({ init: function (element, options) { kendo.ui.Widget.fn.init.call(this, element, options); if (options.componentContainer != null) { options.componentContainer.push(this); } }, options: { name: "Widget", componentContainer: undefined }, }); kendo.ui.plugin(ExtendedWidget);Kind Regards,
Marco