How to autosize the "auto group column"?

Thomas

How to auto resize all columns, including the auto group column ?

The following code only resizes standard columns and not the auto group column as this.gridColumnApi.getAllColumns() doesn't return the auto group column :

autoSizeAllColumns() {
  const allColumnIds = this.gridColumnApi.getAllColumns().map(c => c.colId)
  this.gridColumnApi.autoSizeColumns(allColumnIds)
},
Herc Bontzolakes

I was able to size and autosize the autogroup column directly by using the colID (which I learned is 'ag-Grid-AutoColumn').

To size it specifically:

onGridReady:function(params)
{
    params.columnApi.setColumnWidth('ag-Grid-AutoColumn', 250);
}

To autosize:

onFirstDataRendered:function(params)
{
    params.columnApi.autoSizeColumn('ag-Grid-AutoColumn');
}

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to compose react-textarea-autosize with react-mentions

分類Dev

How do i get Column AutoSize functionality to work with ListView, using Visual Studio and C# Win Forms

分類Dev

Textarea vertical size and autosize

分類Dev

AutoSizeと高さ属性

分類Dev

birt report column autosize when exporting to excel

分類Dev

Autosize vuetify textarea to value-size

分類Dev

react-mentionsでreact-textarea-autosizeを構成する方法

分類Dev

WinformsのAutoSizeおよびSizeプロパティ

分類Dev

ionic 3 textarea autosize(ion-textareaではありません)

分類Dev

NatTable列のAutoSizeドラッグアイコンを変更する方法

分類Dev

Ionic2-autosize で Ionic 3 ディレクティブが機能しない

分類Dev

TreeviewでAutoSizeグリッドレイアウトを実装する方法

分類Dev

AutoSizeをすぐに実現するにはどうすればよいですか?

分類Dev

Visual Studio 2019 vb.netマスクされたテキストボックスは、AutoSizeプロパティを自動的に「true」に戻します

分類Dev

Firemonkey:autosizeプロパティがtrueであるにもかかわらず、TLabelテキストが切り捨てられました

分類Dev

BTNS_AUTOSIZEスタイルで作成されたツールバーボタンの実際のサイズを取得するにはどうすればよいですか?

分類Dev

DependencyProperty how to?

分類Dev

how to get key and how to add more values?

分類Dev

How to search for how much duplicate in mysql and compare it

分類Dev

How to calculate how many rows and columns are needed

分類Dev

How to upgrade npm and node? How to install n?

分類Dev

Multithread - How to make timeout and how to make "interlocking"?

分類Dev

How to split String with "\" as a delimiter? and also how to replace "\" into ":"?

分類Dev

How to calculate into how many parts network will be divided

分類Dev

How to know how much data is consumed in ubuntu

分類Dev

How to become administrator user?

分類Dev

How to disable floppy drive?

分類Dev

How to install libusb?

分類Dev

How to use fsck in Ubuntu?

Related 関連記事

  1. 1

    How to compose react-textarea-autosize with react-mentions

  2. 2

    How do i get Column AutoSize functionality to work with ListView, using Visual Studio and C# Win Forms

  3. 3

    Textarea vertical size and autosize

  4. 4

    AutoSizeと高さ属性

  5. 5

    birt report column autosize when exporting to excel

  6. 6

    Autosize vuetify textarea to value-size

  7. 7

    react-mentionsでreact-textarea-autosizeを構成する方法

  8. 8

    WinformsのAutoSizeおよびSizeプロパティ

  9. 9

    ionic 3 textarea autosize(ion-textareaではありません)

  10. 10

    NatTable列のAutoSizeドラッグアイコンを変更する方法

  11. 11

    Ionic2-autosize で Ionic 3 ディレクティブが機能しない

  12. 12

    TreeviewでAutoSizeグリッドレイアウトを実装する方法

  13. 13

    AutoSizeをすぐに実現するにはどうすればよいですか?

  14. 14

    Visual Studio 2019 vb.netマスクされたテキストボックスは、AutoSizeプロパティを自動的に「true」に戻します

  15. 15

    Firemonkey:autosizeプロパティがtrueであるにもかかわらず、TLabelテキストが切り捨てられました

  16. 16

    BTNS_AUTOSIZEスタイルで作成されたツールバーボタンの実際のサイズを取得するにはどうすればよいですか?

  17. 17

    DependencyProperty how to?

  18. 18

    how to get key and how to add more values?

  19. 19

    How to search for how much duplicate in mysql and compare it

  20. 20

    How to calculate how many rows and columns are needed

  21. 21

    How to upgrade npm and node? How to install n?

  22. 22

    Multithread - How to make timeout and how to make "interlocking"?

  23. 23

    How to split String with "\" as a delimiter? and also how to replace "\" into ":"?

  24. 24

    How to calculate into how many parts network will be divided

  25. 25

    How to know how much data is consumed in ubuntu

  26. 26

    How to become administrator user?

  27. 27

    How to disable floppy drive?

  28. 28

    How to install libusb?

  29. 29

    How to use fsck in Ubuntu?

ホットタグ

アーカイブ