skip to Main Content

Html – kendo grid does not show some columns when too much width

In my angular project I am using kendo grid. it looks like this: And here is the relevant code. html: <mat-card class="f-layoutcard lage-table"> <kendo-grid class="f-table f-searchable" [data]="mitarbeiterListForKendoGrid" [loading]="loading$ | async" [scrollable]="'scrollable'" [selectable]="selectableSettings" #kendoGridInstance="kendoGrid" > <kendo-grid-column field="name" title="Nutzername" [width]="150"> </kendo-grid-column> <kendo-grid-column…

VIEW QUESTION

Reference kendo grid row id on jQuery href

I'm currently using Kendo Grid for ASP.Net Core MVC. So, I created a column with a group of options. columns.Template("<div class='btn-group'></div>") .Title("").Width(100); Then with jquery: $(this).find(".btn-group").append("<button type='button' class='btn btn-light btn-sm dropdown-toggle' data-bs-toggle='dropdown' aria-expanded='false'>Actions<i class='mdi mdi-chevron-down'></i>. </button> <ul class='dropdown-menu dropdown-menu-end'> <li>…

VIEW QUESTION
Back To Top
Search