Questions tagged as 'kendo-ui'

1
answer

Wizard with Kendo UI

Kendo Ui has not developed the wizard component, so we have developed a javascript component in it, but by "mixing it" with Kendo I get errors in the kendo.web.min.js kendo file. In search of solution I found this link that the same problem oc...
asked by 19.02.2015 / 19:45
1
answer

customize create () on kendo toolbar

I need to customize the Create button of the Kendo UI Toolbar (the one that creates a new line to add values) so that it creates a new row for each object in an array, which comes from another pre-selected grid @(Html.Kendo().Grid<Inventar...
asked by 28.10.2014 / 17:31
0
answers

Kendo UI Grid in an AngularJS Directive

How to create a Kendo-grid with reusable options using AngularJS? In addition to the default settings, the grid must dynamically include a checkbox column with the option to select all rows. Methods to handle selections should be part...
asked by 01.05.2014 / 21:08
1
answer

Two-way bind does not work if the model is something like ng-model="record.name" for Kendo UI controls

I have a problem with Kendo UI controls My HTML <input type="text" ng-model="record.name" kendo-numeric-text-box /> <input type="text" ng-model="record.name"> </input> <button ng-click="resetRecord()" >test bind&l...
asked by 17.08.2014 / 16:07
1
answer

KendoUI stops working while separating AngularJS in a .js file

I'm trying to create a simple KendoUI + AngularJS project. When I use the code below, everything works fine: <!DOCTYPE html> <head> <title>AngularJS</title> <meta charset="utf-8"> <link href="Conte...
asked by 13.09.2014 / 04:16
1
answer

BundleConfig - Can not find files on the server

I am using Kendo UI in a MVC 4 project, I made the settings in BudleConfig: bundles.Add(new ScriptBundle("~/bundles/kendo") .Include("~/Scripts/kendo/2013.2.918/kendo.all.min.js") .Include("~/Scrip...
asked by 16.07.2014 / 15:38
1
answer

Calling a text / x-kendo-template script from a javascript function

I have this new button and in the onclick event I am calling the openEditor() function, and inside of this function I want to call a script of type text/x-kendo-template . How can I do this? My code currently: Custom...
asked by 14.07.2017 / 15:52
1
answer

Kendo grid XML remote data

I have a WCF that returns the data of a remote MySQL database, the return is a simple XML, I believe that being a simple XML is not populating my kendo grid. I would like an example to mount my return XML and meet the kendo grid requirements,...
asked by 27.04.2017 / 22:55
1
answer

Kendo MultiSelect passing the placeholder as value in the search

I have a form with a Kendo UI MultiSelect component for ASP.NET MVC / Razor : @(Html.Kendo().MultiSelectFor(m => m.Ids) .Filter(FilterType.Contains) .AutoBind(true) .MinLength(3)...
asked by 17.03.2017 / 12:10
1
answer

Export Kendo Grid to PDF

I have a function that exports to Excel and I need another one that I export to PDF. The function should export the data of a Kendo Grid. function ExportarParaExcel(grid) { grid = grid == undefined ? "#grid" : grid; var grd = $(grid).dat...
asked by 27.09.2016 / 14:42