kendo-ui-grid

Icons not showing in my KendoUI for JQuery Grid

安稳与你 提交于 2020-06-27 15:50:11
问题 I have a KendoUI for JQuery grid, and as you can see in the screenshot below, all of the paging icons are not showing. I have added the necessary stylesheet references. And I have made sure that the stylesheets themselves and the .PNG files referenced in them are in my solution. When I run the solution, I use Google Chrome. At this point, I am at a loss as to what I'm doing wrong. If anyone knows anything, please help. 回答1: I do not see the required fonts folder: \kendo\fonts \kendo\fonts

KendoUI Angular Grid external command

瘦欲@ 提交于 2020-01-06 03:45:07
问题 i'm using KendoUI-Grid in an Angular (5) app. html: <kendo-grid [data]="GRIDData" (add)="addHandler($event)"> <ng-template kendoGridToolbarTemplate> <button kendoGridAddCommand type="button">Add new</button> </ng-template> component: public addHandler({sender}) { this.formGroup = createFormGroup({ 'Id': 'NEW', 'Name': 'New entry' }); sender.addRow(this.formGroup); } Is it possible to trigger the addCommand (or any other) from outside the grid? Perhaps something like: html: <button (click)=

Master-detail kendo ui grid (when select row in master grid get entries in details grid)

好久不见. 提交于 2019-12-31 04:25:07
问题 I am working with master-details kendo ui grid, which is separated. Master grid is located within tabstrip 1 (tabstrip.select(0)). Fields for add/edit (for master grid) is located within tabstrip 2 (tabstrip.select(1)) in top page. In tabstrip 2 I have nested tabstrips for details grid (in middle-bottom page). Details grid is located within nested tabstrip 1 (tabstripNested.select(0)) and fields for add/edit is located within nested tabstrip 2 (tabstripNested.select(1)). What I want? I want

filterable is not working for grid if i am apply if else condition in grid

与世无争的帅哥 提交于 2019-12-25 01:14:46
问题 if we apply if else condition in Kendo grid column then filterable not working for that particular column { field: " ", title: "Compliance Status", width: "180px", template: "# if(WithinDueDt == 'Y'){# Completed on time #} else if(Ongoing == 'Y'){# Ongoing #} else if(CompletedbutDelayed == 'Y'){# Completed but Delayed #} else if(OngoingbutDelayed == 'Y'){# Ongoing but Delayed #} #" } 回答1: Kendo Grid sorting and filtering functionality works based on the field value not based on the template

Hide an element conditionally by its value

不想你离开。 提交于 2019-12-13 23:35:23
问题 I have a kendo grid containing following columns. 1.Name 2.Age 3.Type{values:public,private} I need to hide a column in specific row. In my problem, i want to hide age cell if Type value is private. 回答1: using if else format columns.Template(@<text></text>) .ClientTemplate("#if (field == value) {#" + "<a></a>" + "#}else {#" +"<input name='chkSubscribed' class='subscribedClass'type='type': '' #/>" + "#} #").Width(130).Title("title"); 回答2: You can't hide the cell but you can hide the age

Kendo UI Grid: Hide column when initialize from HTML table?

梦想的初衷 提交于 2019-12-13 07:53:26
问题 $(document).ready(function() { $("#grid").kendoGrid({ height: 550, sortable: true }); }); <link href="http://kendo.cdn.telerik.com/2014.1.318/styles/kendo.common.min.css" rel="stylesheet"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script src="http://kendo.cdn.telerik.com/2014.1.318/js/kendo.all.min.js"></script> <div id="example"> <table id="grid"> <colgroup> <col /> <col /> <col /> <col /> <col /> </colgroup> <thead> <tr> <th data-field="make"

Adding View or Button Link to Kendo Grid

二次信任 提交于 2019-12-13 02:18:59
问题 After a bit of a struggle I've managed to bind my model to a Kendo Grid in my MVC app. What I want to do now is add either a Html.ActionLink or a button at the end of each row so that when clicked it opens a new browser window with the details page for the selected person. My Grid code is such: @ModelType CDB.GridDetail @Code Dim myGridData As IQueryable(Of Person) = Model.GridDetailPersons Html.Kendo().Grid(Of Person)(myGridData) _ .Name("Grid") _ .Columns(Sub(c) c.Bound(Function(s) s

Knockout-Kendo.js Grid UI:datepicker filter

老子叫甜甜 提交于 2019-12-12 04:15:01
问题 I am using the Knockout-Kendo.js integration library I am trying to get the datepicker filter working. However, whenever I add filterable: {ui: "datetimepicker" } to my configuration nothing is shown on the page and no script errors. My kendoGrid configuration looks like (here with filterable attribute on SubmittedDate) <div data-bind="kendoGrid: { data: projectSubmissions, dataSource: { schema: { model: { fields: { SubmissionId: { type: 'number' } , FormName: { type: 'string' } , IdVersion:

How to bind foreign key kendo ui dropdownlist (with angular)

人走茶凉 提交于 2019-12-12 03:34:41
问题 I am working with kendo UI and angular grid application. My grid is populated from JSON data (separate file) and I am use angular service: My JSON data: [ { "Id": 1, "AccountNo": "10236", "PostingDate": "20.01.2015", "MaturityDate": "24.01.2015", "Description": "description1", "DocumentTypeId": 1 }, { "Id": 2, "AccountNo": "10648", "PostingDate": "26.01.2015", "MaturityDate": "28.01.2015", "Description": "description2", "DocumentTypeId": 2 }, { "Id": 3, "AccountNo": "10700", "PostingDate":

Kendo UI Grid - Excel Export with hidden columns and custom formatting

一笑奈何 提交于 2019-12-11 14:41:15
问题 I'm attempting to use the Grid component's built-in support for exporting to excel, applying custom cell formatting as shown in these Telerik docs: http://docs.telerik.com/kendo-ui/controls/data-management/grid/how-to/excel/cell-format The approach using hard-coded row / cell indexes in the export comes with a rather obvious issue when exporting a grid with a prior hidden column displayed - best way to reproduce is to refer to this jsfiddle: https://jsfiddle.net/3anqpnqt/1/ Run fiddle Click