How to use the ember-flexberry/components/flexberry-objectlistview.reopen function in ember-flexberry

To help you get started, we’ve selected a few ember-flexberry examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Flexberry / ember-flexberry-designer / addon / initializers / flexberry-objectlistview.js View on Github external
export function initialize() {
  FlexberryObjectlistviewComponent.reopen({
    /**
      Флаг: показывает должен ли происходить автоматический перарсчет ширины колонок, в случае каких-либо изменений связанных с шириной.
      Так же принудительно растягивает flexberry-objectlistview на всю ширину родительского элемента.

      @property columnsWidthAutoresize
      @type Boolean
      @default true
    */
    columnsWidthAutoresize: true,
  });
}