RE:Increasing width.

How will i increase the width of coumn? scenario: I have a grid which is for dashboard level and also at application level ,in dashboard level it is working fine like image1. but same interface used in application level in (image 2). column not showing properly.  (image1). (image2)

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    You can set the column width through width parameter like this 

    columns:{

    a!gridColumn(
    label:"First Name",
    width: "2X"
    )...

    Determines the column width. Valid values: "AUTO", "ICON", "ICON_PLUS", "NARROW", "NARROW_PLUS", "MEDIUM", "MEDIUM_PLUS", "WIDE", "1X", "2X", "3X", "4X", "5X", "6X", "7X", "8X", "9X", and "10X".

Reply
  • 0
    Certified Senior Developer

    You can set the column width through width parameter like this 

    columns:{

    a!gridColumn(
    label:"First Name",
    width: "2X"
    )...

    Determines the column width. Valid values: "AUTO", "ICON", "ICON_PLUS", "NARROW", "NARROW_PLUS", "MEDIUM", "MEDIUM_PLUS", "WIDE", "1X", "2X", "3X", "4X", "5X", "6X", "7X", "8X", "9X", and "10X".

Children