projects/i-components/src/lib/components/xam-grid-settings/xam-grid-column-moving.component.ts
Xam grid column moving settings as template
selector | wm-column-moving-settings |
Properties |
Inputs |
allowColumnMoving | |
Type : boolean
|
|
Allows column moving in the Xam grid |
allowColumnMoving |
Type : boolean
|
Decorators :
@Input()
|
Allows column moving in the Xam grid |
import { Component, Input } from '@angular/core';
/**
* Placeholder for the column moving settings template object
*
* @export
* @class XamGridColumnMovingSettingsComponent
*/
@Component({
selector: 'wm-xam-grid-column-moving-settings',
template: `<ng-content></ng-content>`,
})
export class XamGridColumnMovingSettingsComponent {}
/**
* Xam grid column moving settings as template
*
* @export
* @class ColumnMovingSettingsComponent
*/
@Component({
selector: 'wm-column-moving-settings',
template: ``,
})
export class ColumnMovingSettingsComponent {
/**
* Allows column moving in the Xam grid
*
* @type {boolean}
* @memberof ColumnMovingSettingsComponent
*/
@Input()
allowColumnMoving: boolean;
}