{ "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
Hi All,
I tried virtual scrolling with kendo Grid. Client is complaining about scrolling effect is not smooth(horizontal and vertical scrolling) in Mobile devices(Android and IOS). So can you please help me how can i solve this issue with kendo grid.
Thanks,
Nirav
<!-- start - for lazy loading--><div class="mobileListViewWrap deskNone"> <div id="siteVisitationEndlessScroll" class="mobileListView k-grid gridBrdr mobInfGrid"> <div id="siteVisitationEndlessScrollView" data-role="view" data-title="Company | Date | Reimbursement | Head Offices "> <div data-role="header" class="mobileListViewHeader" > <div data-role="navbar" > <div class="wdth200px"><a class="k-link" href="#">Company</a></div> <div class="wdth100px"><a class="k-link" href="#">Visit Date</a></div> <div class="wdth160px"><a class="k-link" href="#">Reimbursement</a></div> <div class="wdth160px"><a class="k-link" href="#">Head/Admin Offices</a></div> </div> </div> <ul id="siteVisitationViewformobile" class="mobileListViewList"></ul> <div id="noItemsToDisply">No items to display</div> </div>
</div></div> <script type="text/x-kendo-tmpl" id="siteVisitationTemplate"> <div class="fLeft wdth200px">#:CompanyName#</div> <div class="fLeft wdth100px">#:getDateInCurrentTimezone(VisitDate)#</div> <div class="fLeft wdth160px"></div> <div class="fLeft wdth160px"></div> <br><br> </script> <!-- end - for lazy loading-->var app = new kendo.mobile.Application($("#siteVisitationEndlessScroll"));$("#siteVisitationViewformobile").kendoMobileListView({ dataSource: dataSource, template: $("#siteVisitationTemplate").html(), endlessScroll: true });