Sfoglia il codice sorgente

customize grid height and content

tags/2.037
Patrick Sun 5 anni fa
parent
commit
dba6317895
2 ha cambiato i file con 3 aggiunte e 7 eliminazioni
  1. +0
    -4
      src/app/main-menu-items.ts
  2. +3
    -3
      src/app/transaction-list/transaction-list.component.html

+ 0
- 4
src/app/main-menu-items.ts Vedi File

@@ -21,10 +21,6 @@ export const mainMenuItems: any[] = [
{ text: 'Add+', icon: 'plus', popup: "loanEdit" },
{ text: 'Edit', icon: 'plus', url: "./#transaction" },
{ text: 'List All', icon: 'table' ,url: './#transaction-list' },
{ text: '--', separator: "true" },
{ text: 'Export All Loans' , icon: "excel"},
{ text: '--', separator: "true" },
{ text: 'Search', icon: 'search' }
]
},
{

+ 3
- 3
src/app/transaction-list/transaction-list.component.html Vedi File

@@ -2,13 +2,13 @@
[kendoGridBinding]="gridView"
kendoGridSelectBy="id"
[selectedKeys]="mySelection"
[pageSize]="30"
[pageSize]="20"
[pageable]="true"
[sortable]="true"
[groupable]="true"
[groupable]="false"
[reorderable]="true"
[resizable]="true"
[height] = "1500"
[height] = "1170"
class="fullheight_grid"
[columnMenu]="{ filter: true }"
>

Loading…
Annulla
Salva