PaneProperties
12 Sep 20252 minutes to read
Interface to configure pane properties such as its content, size, min, max, resizable, collapsed and collapsible.
Properties
collapsed boolean
Specifies whether a pane is collapsed or not collapsed at the initial rendering of splitter.
<<template>
<ejs-splitter height="110px">
<e-panes>
<e-pane collapsed=true></e-pane>
<e-pane collapsed=true></e-pane>
</e-panes>
</ejs-splitter>
</template>
<script>
import Vue from "vue";
import { SplitterPlugin } from "@syncfusion/ej2-vue-layouts";
Vue.use(SplitterPlugin);
export default Vue.extend({
data: function() {
return {};
}
});
</script>Defaults to false
collapsible boolean
Specifies whether a pane is collapsible or not collapsible.
<<template>
<ejs-splitter height="110px">
<e-panes>
<e-pane collapsible=true></e-pane>
<e-pane collapsible=true></e-pane>
</e-panes>
</ejs-splitter>
</template>
<script>
import Vue from "vue";
import { SplitterPlugin } from "@syncfusion/ej2-vue-layouts";
Vue.use(SplitterPlugin);
export default Vue.extend({
data: function() {
return {};
}
});
</script>Defaults to false
content string|HTMLElement
Specifies the content of split pane as plain text, HTML markup, or any other JavaScript controls.
Defaults to ’’
cssClass string
Specifies the CSS class names that defines specific user-defined
styles and themes to be appended on corresponding pane of the Splitter.
It is used to customize the Splitter control panes.
One or more custom CSS classes can be specified to the Splitter panes.
Defaults to ’’
max string
Specifies the maximum size of a pane. The pane cannot be resized if it is more than the specified maximum limit.
Defaults to null
min string
Specifies the minimum size of a pane. The pane cannot be resized if it is less than the specified minimum size.
Defaults to null
resizable boolean
Specifies the value whether a pane is resizable. By default, the Splitter is resizable in all panes.
You can disable this for any specific panes using this property.
Defaults to true
size string
Configures the properties for each pane.
Defaults to ’’