@bryntum/grid-vue-3-thin 7.3.0 → 7.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/lib/chunks/Bc2x_WPR.js.map +1 -1
- package/lib/chunks/Be7ZZzGW.js.map +1 -1
- package/lib/chunks/BpNo5v3W.js.map +1 -1
- package/lib/chunks/{BeyOFZne.js → C87PnYXS.js} +11 -9
- package/lib/chunks/C87PnYXS.js.map +1 -0
- package/lib/chunks/{Ba35uKyP.js → C9RmZYoQ.js} +7 -5
- package/lib/chunks/C9RmZYoQ.js.map +1 -0
- package/lib/chunks/CAlh-Y8B.js.map +1 -1
- package/lib/chunks/CWYhi4DG.js.map +1 -1
- package/lib/chunks/CcfDAcJD.js.map +1 -1
- package/lib/chunks/{BGeNcVH6.js → DZ2V6NNc.js} +12 -10
- package/lib/chunks/DZ2V6NNc.js.map +1 -0
- package/lib/chunks/w2GDktIt.js.map +1 -1
- package/lib/components/BryntumAIFilterField.js +1 -1
- package/lib/components/BryntumChecklistFilterCombo.js +1 -1
- package/lib/components/BryntumTreeCombo.js +1 -1
- package/lib/index.js +3 -3
- package/package.json +1 -1
- package/src/components/BryntumAIFilterField.vue +86 -106
- package/src/components/BryntumAIFilterFieldProps.ts +15 -0
- package/src/components/BryntumChecklistFilterCombo.vue +87 -109
- package/src/components/BryntumChecklistFilterComboProps.ts +15 -0
- package/src/components/BryntumGrid.vue +529 -755
- package/src/components/BryntumGridBase.vue +529 -755
- package/src/components/BryntumGridBaseProps.ts +6 -0
- package/src/components/BryntumGridChartDesigner.vue +49 -69
- package/src/components/BryntumGridChartDesignerProps.ts +6 -0
- package/src/components/BryntumGridFieldFilterPicker.vue +59 -85
- package/src/components/BryntumGridFieldFilterPickerGroup.vue +63 -91
- package/src/components/BryntumGridFieldFilterPickerGroupProps.ts +6 -0
- package/src/components/BryntumGridFieldFilterPickerProps.ts +6 -0
- package/src/components/BryntumGridProps.ts +6 -0
- package/src/components/BryntumGroupBar.vue +74 -102
- package/src/components/BryntumGroupBarProps.ts +9 -1
- package/src/components/BryntumTreeCombo.vue +87 -109
- package/src/components/BryntumTreeComboProps.ts +15 -0
- package/src/components/BryntumTreeGrid.vue +529 -755
- package/src/components/BryntumTreeGridProps.ts +6 -0
- package/lib/chunks/BGeNcVH6.js.map +0 -1
- package/lib/chunks/Ba35uKyP.js.map +0 -1
- package/lib/chunks/BeyOFZne.js.map +0 -1
|
@@ -53,6 +53,8 @@ defineProps<{
|
|
|
53
53
|
/**
|
|
54
54
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
55
55
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
56
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
57
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-appendTo)
|
|
56
58
|
*/
|
|
57
59
|
appendTo ? : HTMLElement|string
|
|
58
60
|
/**
|
|
@@ -301,10 +303,14 @@ defineProps<{
|
|
|
301
303
|
inputFieldAlign ? : 'start'|'end'
|
|
302
304
|
/**
|
|
303
305
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
306
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
307
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertBefore)
|
|
304
308
|
*/
|
|
305
309
|
insertBefore ? : HTMLElement|string
|
|
306
310
|
/**
|
|
307
311
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
312
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
313
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
|
|
308
314
|
*/
|
|
309
315
|
insertFirst ? : HTMLElement|string
|
|
310
316
|
/**
|
|
@@ -613,53 +619,43 @@ const emit = defineEmits<{
|
|
|
613
619
|
* Return `false` from the event handler to prevent the filter being added.
|
|
614
620
|
* @param {string} e Event name
|
|
615
621
|
* @param {object} params Event parameters
|
|
616
|
-
* @param {
|
|
617
|
-
* @param {
|
|
618
|
-
* @param {
|
|
619
|
-
* @param {Core.widget.FieldFilterPicker} params.params.event.source The FieldFilterPicker instance that fired the event.
|
|
620
|
-
* @param {CollectionFilterConfig} params.params.event.filter The [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration object for the filter represented by this [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker).
|
|
622
|
+
* @param {object} params.event Event object
|
|
623
|
+
* @param {Core.widget.FieldFilterPicker} params.event.source The FieldFilterPicker instance that fired the event.
|
|
624
|
+
* @param {CollectionFilterConfig} params.event.filter The [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration object for the filter represented by this [FieldFilterPicker](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker).
|
|
621
625
|
*/
|
|
622
|
-
(e: 'beforeAddFilter', params: ((event: { source: FieldFilterPicker, filter: CollectionFilterConfig }) =>
|
|
626
|
+
(e: 'beforeAddFilter', params: ((event: { source: FieldFilterPicker, filter: CollectionFilterConfig }) => boolean|void)|string): boolean|void
|
|
623
627
|
/**
|
|
624
628
|
* Fires before an object is destroyed.
|
|
625
629
|
* @param {string} e Event name
|
|
626
630
|
* @param {object} params Event parameters
|
|
627
|
-
* @param {
|
|
628
|
-
* @param {
|
|
629
|
-
* @param {object} params.params.event Event object
|
|
630
|
-
* @param {Core.Base} params.params.event.source The Object that is being destroyed.
|
|
631
|
+
* @param {object} params.event Event object
|
|
632
|
+
* @param {Core.Base} params.event.source The Object that is being destroyed.
|
|
631
633
|
*/
|
|
632
634
|
(e: 'beforeDestroy', params: ((event: { source: Base }) => void)|string): void
|
|
633
635
|
/**
|
|
634
636
|
* Triggered before a widget is hidden. Return `false` to prevent the action.
|
|
635
637
|
* @param {string} e Event name
|
|
636
638
|
* @param {object} params Event parameters
|
|
637
|
-
* @param {
|
|
638
|
-
* @param {
|
|
639
|
-
* @param {object} params.params.event Event object
|
|
640
|
-
* @param {Core.widget.Widget} params.params.event.source The widget being hidden.
|
|
639
|
+
* @param {object} params.event Event object
|
|
640
|
+
* @param {Core.widget.Widget} params.event.source The widget being hidden.
|
|
641
641
|
*/
|
|
642
|
-
(e: 'beforeHide', params: ((event: { source: Widget }) =>
|
|
642
|
+
(e: 'beforeHide', params: ((event: { source: Widget }) => boolean|void)|string): boolean|void
|
|
643
643
|
/**
|
|
644
644
|
* Fired before this container will load record values into its child fields. This is useful if you
|
|
645
645
|
* want to modify the UI before data is loaded (e.g. set some input field to be readonly)
|
|
646
646
|
* @param {string} e Event name
|
|
647
647
|
* @param {object} params Event parameters
|
|
648
|
-
* @param {
|
|
649
|
-
* @param {
|
|
650
|
-
* @param {
|
|
651
|
-
* @param {Core.widget.Container} params.params.event.source The container
|
|
652
|
-
* @param {Core.data.Model} params.params.event.record The record
|
|
648
|
+
* @param {object} params.event Event object
|
|
649
|
+
* @param {Core.widget.Container} params.event.source The container
|
|
650
|
+
* @param {Core.data.Model} params.event.record The record
|
|
653
651
|
*/
|
|
654
652
|
(e: 'beforeSetRecord', params: ((event: { source: Container, record: Model }) => void)|string): void
|
|
655
653
|
/**
|
|
656
654
|
* Triggered before a widget is shown. Return `false` to prevent the action.
|
|
657
655
|
* @param {string} e Event name
|
|
658
656
|
* @param {object} params Event parameters
|
|
659
|
-
* @param {
|
|
660
|
-
* @param {
|
|
661
|
-
* @param {object} params.params.event Event object
|
|
662
|
-
* @param {Core.widget.Widget,any} params.params.event.source The widget being shown
|
|
657
|
+
* @param {object} params.event Event object
|
|
658
|
+
* @param {Core.widget.Widget,any} params.event.source The widget being shown
|
|
663
659
|
*/
|
|
664
660
|
(e: 'beforeShow', params: ((event: { source: Widget|any }) => Promise<boolean>|boolean|void)|string): Promise<boolean>|boolean|void
|
|
665
661
|
/**
|
|
@@ -667,69 +663,57 @@ const emit = defineEmits<{
|
|
|
667
663
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#event-catchAll)
|
|
668
664
|
* @param {string} e Event name
|
|
669
665
|
* @param {object} params Event parameters
|
|
670
|
-
* @param {
|
|
671
|
-
* @param {
|
|
672
|
-
* @param {
|
|
673
|
-
* @param {{[key: string]: any, type: string}} params.params.event.event The Object that contains event details
|
|
674
|
-
* @param {string} params.params.event.event.type The type of the event which is caught by the listener
|
|
666
|
+
* @param {object} params.event Event object
|
|
667
|
+
* @param {{[key: string]: any, type: string}} params.event.event The Object that contains event details
|
|
668
|
+
* @param {string} params.event.event.type The type of the event which is caught by the listener
|
|
675
669
|
*/
|
|
676
670
|
(e: 'catchAll', params: ((event: {[key: string]: any, type: string}) => void)|string): void
|
|
677
671
|
/**
|
|
678
672
|
* Fires when any filter in the group is added, removed, or modified.
|
|
679
673
|
* @param {string} e Event name
|
|
680
674
|
* @param {object} params Event parameters
|
|
681
|
-
* @param {
|
|
682
|
-
* @param {
|
|
683
|
-
* @param {
|
|
684
|
-
* @param {
|
|
685
|
-
* @param {CollectionFilterConfig[]} params.params.event.filters The array of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects currently represented by the FieldFilterPickerGroup. <strong>IMPORTANT:</strong> Note that this includes all filters currently present in the UI, including partially completed ones that may not be ready to apply to a Store. To retrieve only valid filters, use the `validFilters` parameter on this event, or filter out incomplete filters in your own code.
|
|
686
|
-
* @param {CollectionFilterConfig[]} params.params.event.validFilters The subset of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects in the `filters` parameter on this event that are complete and valid for application to a Store.
|
|
675
|
+
* @param {object} params.event Event object
|
|
676
|
+
* @param {Core.widget.FieldFilterPickerGroup} params.event.source The FieldFilterPickerGroup instance that fired the event.
|
|
677
|
+
* @param {CollectionFilterConfig[]} params.event.filters The array of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects currently represented by the FieldFilterPickerGroup. <strong>IMPORTANT:</strong> Note that this includes all filters currently present in the UI, including partially completed ones that may not be ready to apply to a Store. To retrieve only valid filters, use the `validFilters` parameter on this event, or filter out incomplete filters in your own code.
|
|
678
|
+
* @param {CollectionFilterConfig[]} params.event.validFilters The subset of [CollectionFilter](https://bryntum.com/products/grid/docs/api/Core/util/CollectionFilter) configuration objects in the `filters` parameter on this event that are complete and valid for application to a Store.
|
|
687
679
|
*/
|
|
688
680
|
(e: 'change', params: ((event: { source: FieldFilterPickerGroup, filters: CollectionFilterConfig[], validFilters: CollectionFilterConfig[] }) => void)|string): void
|
|
689
681
|
/**
|
|
690
682
|
* Fires when an object is destroyed.
|
|
691
683
|
* @param {string} e Event name
|
|
692
684
|
* @param {object} params Event parameters
|
|
693
|
-
* @param {
|
|
694
|
-
* @param {
|
|
695
|
-
* @param {object} params.params.event Event object
|
|
696
|
-
* @param {Core.Base} params.params.event.source The Object that is being destroyed.
|
|
685
|
+
* @param {object} params.event Event object
|
|
686
|
+
* @param {Core.Base} params.event.source The Object that is being destroyed.
|
|
697
687
|
*/
|
|
698
688
|
(e: 'destroy', params: ((event: { source: Base }) => void)|string): void
|
|
699
689
|
/**
|
|
700
690
|
* Fires when a field is mutated and the state of the [hasChanges](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-hasChanges) property changes
|
|
701
691
|
* @param {string} e Event name
|
|
702
692
|
* @param {object} params Event parameters
|
|
703
|
-
* @param {
|
|
704
|
-
* @param {
|
|
705
|
-
* @param {
|
|
706
|
-
* @param {Core.widget.Container} params.params.event.source The container.
|
|
707
|
-
* @param {boolean} params.params.event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.
|
|
693
|
+
* @param {object} params.event Event object
|
|
694
|
+
* @param {Core.widget.Container} params.event.source The container.
|
|
695
|
+
* @param {boolean} params.event.dirty The dirty state of the Container - `true` if there are any fields which have been changed since initial load.
|
|
708
696
|
*/
|
|
709
697
|
(e: 'dirtyStateChange', params: ((event: { source: Container, dirty: boolean }) => void)|string): void
|
|
710
698
|
/**
|
|
711
699
|
* Triggered when a widget's [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element) is available.
|
|
712
700
|
* @param {string} e Event name
|
|
713
701
|
* @param {object} params Event parameters
|
|
714
|
-
* @param {
|
|
715
|
-
* @param {
|
|
716
|
-
* @param {object} params.params.event Event object
|
|
717
|
-
* @param {HTMLElement} params.params.event.element The Widget's element.
|
|
702
|
+
* @param {object} params.event Event object
|
|
703
|
+
* @param {HTMLElement} params.event.element The Widget's element.
|
|
718
704
|
*/
|
|
719
705
|
(e: 'elementCreated', params: ((event: { element: HTMLElement }) => void)|string): void
|
|
720
706
|
/**
|
|
721
707
|
* Fired when focus enters this Widget.
|
|
722
708
|
* @param {string} e Event name
|
|
723
709
|
* @param {object} params Event parameters
|
|
724
|
-
* @param {
|
|
725
|
-
* @param {
|
|
726
|
-
* @param {
|
|
727
|
-
* @param {
|
|
728
|
-
* @param {
|
|
729
|
-
* @param {
|
|
730
|
-
* @param {
|
|
731
|
-
* @param {Core.widget.Widget} params.params.event.toWidget The widget which gained focus.
|
|
732
|
-
* @param {boolean} params.params.event.backwards `true` if the `toElement` is before the `fromElement` in document order.
|
|
710
|
+
* @param {object} params.event Event object
|
|
711
|
+
* @param {Core.widget.Widget} params.event.source This Widget
|
|
712
|
+
* @param {HTMLElement} params.event.fromElement The element which lost focus.
|
|
713
|
+
* @param {HTMLElement} params.event.toElement The element which gained focus.
|
|
714
|
+
* @param {Core.widget.Widget} params.event.fromWidget The widget which lost focus.
|
|
715
|
+
* @param {Core.widget.Widget} params.event.toWidget The widget which gained focus.
|
|
716
|
+
* @param {boolean} params.event.backwards `true` if the `toElement` is before the `fromElement` in document order.
|
|
733
717
|
*/
|
|
734
718
|
(e: 'focusIn', params: ((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string): void
|
|
735
719
|
/**
|
|
@@ -738,25 +722,21 @@ const emit = defineEmits<{
|
|
|
738
722
|
* will not trigger this event. This is when focus exits this widget completely.
|
|
739
723
|
* @param {string} e Event name
|
|
740
724
|
* @param {object} params Event parameters
|
|
741
|
-
* @param {
|
|
742
|
-
* @param {
|
|
743
|
-
* @param {
|
|
744
|
-
* @param {
|
|
745
|
-
* @param {
|
|
746
|
-
* @param {
|
|
747
|
-
* @param {
|
|
748
|
-
* @param {Core.widget.Widget} params.params.event.toWidget The widget which gained focus.
|
|
749
|
-
* @param {boolean} params.params.event.backwards `true` if the `toElement` is before the `fromElement` in document order.
|
|
725
|
+
* @param {object} params.event Event object
|
|
726
|
+
* @param {Core.widget.Widget} params.event.source This Widget
|
|
727
|
+
* @param {HTMLElement} params.event.fromElement The element which lost focus.
|
|
728
|
+
* @param {HTMLElement} params.event.toElement The element which gained focus.
|
|
729
|
+
* @param {Core.widget.Widget} params.event.fromWidget The widget which lost focus.
|
|
730
|
+
* @param {Core.widget.Widget} params.event.toWidget The widget which gained focus.
|
|
731
|
+
* @param {boolean} params.event.backwards `true` if the `toElement` is before the `fromElement` in document order.
|
|
750
732
|
*/
|
|
751
733
|
(e: 'focusOut', params: ((event: { source: Widget, fromElement: HTMLElement, toElement: HTMLElement, fromWidget: Widget, toWidget: Widget, backwards: boolean }) => void)|string): void
|
|
752
734
|
/**
|
|
753
735
|
* Triggered after a widget was hidden
|
|
754
736
|
* @param {string} e Event name
|
|
755
737
|
* @param {object} params Event parameters
|
|
756
|
-
* @param {
|
|
757
|
-
* @param {
|
|
758
|
-
* @param {object} params.params.event Event object
|
|
759
|
-
* @param {Core.widget.Widget} params.params.event.source The widget
|
|
738
|
+
* @param {object} params.event Event object
|
|
739
|
+
* @param {Core.widget.Widget} params.event.source The widget
|
|
760
740
|
*/
|
|
761
741
|
(e: 'hide', params: ((event: { source: Widget }) => void)|string): void
|
|
762
742
|
/**
|
|
@@ -765,21 +745,17 @@ const emit = defineEmits<{
|
|
|
765
745
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#event-paint)
|
|
766
746
|
* @param {string} e Event name
|
|
767
747
|
* @param {object} params Event parameters
|
|
768
|
-
* @param {
|
|
769
|
-
* @param {
|
|
770
|
-
* @param {
|
|
771
|
-
* @param {Core.widget.Widget} params.params.event.source The widget being painted.
|
|
772
|
-
* @param {boolean} params.params.event.firstPaint `true` if this is the first paint.
|
|
748
|
+
* @param {object} params.event Event object
|
|
749
|
+
* @param {Core.widget.Widget} params.event.source The widget being painted.
|
|
750
|
+
* @param {boolean} params.event.firstPaint `true` if this is the first paint.
|
|
773
751
|
*/
|
|
774
752
|
(e: 'paint', params: ((event: { source: Widget, firstPaint: boolean }) => void)|string): void
|
|
775
753
|
/**
|
|
776
754
|
* Fired when a Widget's read only state is toggled
|
|
777
755
|
* @param {string} e Event name
|
|
778
756
|
* @param {object} params Event parameters
|
|
779
|
-
* @param {
|
|
780
|
-
* @param {
|
|
781
|
-
* @param {object} params.params.event Event object
|
|
782
|
-
* @param {boolean} params.params.event.readOnly Read only or not
|
|
757
|
+
* @param {object} params.event Event object
|
|
758
|
+
* @param {boolean} params.event.readOnly Read only or not
|
|
783
759
|
*/
|
|
784
760
|
(e: 'readOnly', params: ((event: { readOnly: boolean }) => void)|string): void
|
|
785
761
|
/**
|
|
@@ -791,24 +767,20 @@ const emit = defineEmits<{
|
|
|
791
767
|
* Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.
|
|
792
768
|
* @param {string} e Event name
|
|
793
769
|
* @param {object} params Event parameters
|
|
794
|
-
* @param {
|
|
795
|
-
* @param {
|
|
796
|
-
* @param {
|
|
797
|
-
* @param {
|
|
798
|
-
* @param {number} params.
|
|
799
|
-
* @param {number} params.
|
|
800
|
-
* @param {number} params.params.event.oldWidth The old width
|
|
801
|
-
* @param {number} params.params.event.oldHeight The old height
|
|
770
|
+
* @param {object} params.event Event object
|
|
771
|
+
* @param {Core.widget.Widget} params.event.source This Widget
|
|
772
|
+
* @param {number} params.event.width The new width
|
|
773
|
+
* @param {number} params.event.height The new height
|
|
774
|
+
* @param {number} params.event.oldWidth The old width
|
|
775
|
+
* @param {number} params.event.oldHeight The old height
|
|
802
776
|
*/
|
|
803
777
|
(e: 'resize', params: ((event: { source: Widget, width: number, height: number, oldWidth: number, oldHeight: number }) => void)|string): void
|
|
804
778
|
/**
|
|
805
779
|
* Triggered after a widget is shown.
|
|
806
780
|
* @param {string} e Event name
|
|
807
781
|
* @param {object} params Event parameters
|
|
808
|
-
* @param {
|
|
809
|
-
* @param {
|
|
810
|
-
* @param {object} params.params.event Event object
|
|
811
|
-
* @param {Core.widget.Widget} params.params.event.source The widget
|
|
782
|
+
* @param {object} params.event Event object
|
|
783
|
+
* @param {Core.widget.Widget} params.event.source The widget
|
|
812
784
|
*/
|
|
813
785
|
(e: 'show', params: ((event: { source: Widget }) => void)|string): void
|
|
814
786
|
}>();
|
|
@@ -38,6 +38,8 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
38
38
|
/**
|
|
39
39
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
40
40
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
41
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
42
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-appendTo)
|
|
41
43
|
*/
|
|
42
44
|
appendTo ? : HTMLElement|string
|
|
43
45
|
/**
|
|
@@ -286,10 +288,14 @@ export declare type BryntumGridFieldFilterPickerGroupProps = {
|
|
|
286
288
|
inputFieldAlign ? : 'start'|'end'
|
|
287
289
|
/**
|
|
288
290
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
291
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
292
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertBefore)
|
|
289
293
|
*/
|
|
290
294
|
insertBefore ? : HTMLElement|string
|
|
291
295
|
/**
|
|
292
296
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
297
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
298
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
|
|
293
299
|
*/
|
|
294
300
|
insertFirst ? : HTMLElement|string
|
|
295
301
|
/**
|
|
@@ -35,6 +35,8 @@ export declare type BryntumGridFieldFilterPickerProps = {
|
|
|
35
35
|
/**
|
|
36
36
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
37
37
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
38
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
39
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-appendTo)
|
|
38
40
|
*/
|
|
39
41
|
appendTo ? : HTMLElement|string
|
|
40
42
|
/**
|
|
@@ -271,10 +273,14 @@ export declare type BryntumGridFieldFilterPickerProps = {
|
|
|
271
273
|
inputFieldAlign ? : 'start'|'end'
|
|
272
274
|
/**
|
|
273
275
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
276
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
277
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertBefore)
|
|
274
278
|
*/
|
|
275
279
|
insertBefore ? : HTMLElement|string
|
|
276
280
|
/**
|
|
277
281
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
282
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
283
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertFirst)
|
|
278
284
|
*/
|
|
279
285
|
insertFirst ? : HTMLElement|string
|
|
280
286
|
/**
|
|
@@ -36,6 +36,8 @@ export declare type BryntumGridProps = {
|
|
|
36
36
|
/**
|
|
37
37
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
38
38
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
39
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
40
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-appendTo)
|
|
39
41
|
*/
|
|
40
42
|
appendTo ? : HTMLElement|string
|
|
41
43
|
/**
|
|
@@ -347,10 +349,14 @@ export declare type BryntumGridProps = {
|
|
|
347
349
|
inputFieldAlign ? : 'start'|'end'
|
|
348
350
|
/**
|
|
349
351
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
352
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
353
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertBefore)
|
|
350
354
|
*/
|
|
351
355
|
insertBefore ? : HTMLElement|string
|
|
352
356
|
/**
|
|
353
357
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
358
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
359
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertFirst)
|
|
354
360
|
*/
|
|
355
361
|
insertFirst ? : HTMLElement|string
|
|
356
362
|
/**
|