Grid Component
The most of work could be configured in the HTML templates under the q-grid
component. Sometimes itβs required to have direct access to the q-grid model, in this case GridModel
could be used.
import { Grid, GridModel } from 'ng2-qgrid';
@Component({
selector: 'my-component',
template: '<q-grid [model]="gridModel"></q-grid>',
})
export class MyComponent {
gridModel = this.qgrid.model();
constructor(private qgrid: Grid) {}
}
What about id in the q-grid?
Be carful by setting up id in the q-grid it should be unique across whole html page, because q-grid internally use it for the style sheet generation and default state persistence.
<q-grid id="my-grid"></q-grid>
How to setup title of the grid?
<q-grid caption="My Example of Caption"></q-grid>