/*! * * Wijmo Library 5.20251.40 * https://developer.mescius.com/wijmo * * Copyright(c) MESCIUS inc. All rights reserved. * * Licensed under the End-User License Agreement For MESCIUS Wijmo Software. * us.sales@mescius.com * https://developer.mescius.com/wijmo/licensing * */ /** * {@module wijmo.knockout.grid.grouppanel} * KnockoutJS bindings for wijmo.grid.grouppanel module */ /** * */ export declare var ___keepComment: any; import { WjBinding } from 'wijmo/wijmo.knockout.base'; /** * KnockoutJS binding for the {@link FlexGrid} {@link GroupPanel} control. * * The wjGroupPanel binding should be connected to the FlexGrid control using the grid property. * For example: * *
<p>Here is a FlexGrid control with GroupPanel:</p> * * <div data-bind="wjGroupPanel: { grid: flex(), placeholder: 'Drag columns here to create groups.' }"></div> * * <div data-bind="wjFlexGrid: { control: flex, itemsSource: data }"> * <div data-bind="wjFlexGridColumn: { * header: 'Country', * binding: 'country', * width: '*' }"> * </div> * <div data-bind="wjFlexGridColumn: { * header: 'Date', * binding: 'date' }"> * </div> * <div data-bind="wjFlexGridColumn: { * header: 'Revenue', * binding: 'amount', * format: 'n0' }"> * </div> * <div data-bind="wjFlexGridColumn: { * header: 'Active', * binding: 'active' }"> * </div> * </div>* * The wjGroupPanel binding supports all read-write properties and events of * the {@link GroupPanel} class. * */ export declare class wjGroupPanel extends WjBinding { _getControlConstructor(): any; }