Johan Isaksson
12 June 2019

What’s New In Bryntum Grid 2.1

We are excited to announce version 2.1.0 of Bryntum Grid. This release contains many behind the scenes changes made to […]

We are excited to announce version 2.1.0 of Bryntum Grid. This release contains many behind the scenes changes made to pave the way for the newly released Bryntum Gantt 1.0, but it also includes some new goodies described below. For full details please see the change log.

Code editor in demos

Our demos now include a basic built-in code editor, allowing you to easily reconfigure the demos live in the browser. Show the editor by clicking the </> icon available in most demos:

Code editor

Button improvements

Buttons now have a `menu` config, allowing them to easily show a menu (or other widget) on click:

Button with menu

Basic usage:

const menuButton = new Button({
  text : 'Postpone',
  menu : [
    { text : 'Until tomorrow' },
    { text : 'Indefinitely' }
  ]
});

2.1 also ships a new button specific container, ButtonGroup. It holds multiple buttons, rendering them as a coherent block with adapted styling:

ButtonGroup container

Basic usage:

const buttonGroup = new ButtonGroup({
  items : [
    { icon : 'b-fa-beer' },
    { icon : 'b-fa-cocktail' },
    { icon : 'b-fa-wine-glass-alt' }
  ]
});

Model batch changes

The support for batching field changes on a record has been improved. Previously changes would be applied to the underlaying data while batching, with no way of canceling a batch. The new approach stores the changes separately until the batch ends. At that point all changes are applied as a single call to `Model#set()`, allowing any listeners to update events to take action. It is now also possible to cancel a batch by calling `Model#cancelBatch()`, leaving field values untouched.

Basic usage:

record.beginBatch();
// Change some fields
record.name = 'Bruce Banner';
record.age = 30;
// Do some more processing
if (angerLevel > 50) {
  record.strength = 100;
}
// Apply the changes, triggering events etc.
record.endBatch();

Worth nothing is that in many cases it is easier to just set multiple fields with a direct call to `Model#set()`:

record.set({
  name  : 'Hulk',
  color : 'green'
});

DateField stepping

Our DateField gained a `step` config, that when used adds < and > icons to the field to easily adjust a date without having to open the picker:

DateField with step configured

Additional improvements

Deprecations

Learn more

For full details please see the change log.

Download Free Trial

Johan Isaksson

Bryntum Grid Development Product updates