Docs
API
  • minListWidth

    Number

    The minimum width of list for combo column.
    When column is not wide but values in list are long than for better look
    it is possible to set minListWidth

    Example

    
    },{
      index: 'country',
      title: 'Country',
      type: 'combo',
      width: 99,
      filter: {
        header: true
      },
      displayKey: 'text',
      valueKey: 'text',
      multiSelect: true,
      itemCheckBox: true,
      minListWidth: 120,
      data: {
        proxy: {
          url: '/json-data/theme/countries.json'
        }
      }
    },{
    

    Default

    
    undefined