SplitterPaneTagHelper
Example
Razor
<pane>
</pane>
Attributes
Attribute | Type | Description |
---|---|---|
collapsed | Boolean | Specifies whether a pane is initially collapsed (true) or expanded (true). |
collapsed-size | String | Specifies the size of a collapsed pane defined as pixels (i.e. "200px") or as a percentage (i.e. "50%"). This value must not exceed panes.max or be less then panes.min. |
collapsible | Boolean | Specifies whether a pane is collapsible (true) or not collapsible (false). |
content-url | String | Specifies the URL from which to load the content of a pane. |
label | String | The label of the current pane. Will be used as a aria-label for the Splitter separator that has the pane as its primary one (the separator that is immediately after the pane). |
label-id | String | The ID of the element that should be used as a label of the current pane. Will be used as a value of the aria-labelledby attribute for the Splitter separator that has the pane as its primary one (the separator that is immediately after the pane). |
max-size | String | Specifies the maximum size of a pane defined as pixels (i.e. "200px") or as a percentage (i.e. "50%"). The size of a resized pane cannot exceed the defined maximum size. |
min-size | String | Specifies the minimum size of a pane defined as pixels (i.e. "200px") or as a percentage (i.e. "50%"). The size of a resized pane cannot be less than the defined minimum size. |
resizable | Boolean | Specifies whether a pane is resizable (true) or not resizable (false). |
scrollable | Boolean | Specifies whether a pane is scrollable (true) or not scrollable (false). |
size | String | Specifies the size of a pane defined as pixels (i.e. "200px") or as a percentage (i.e. "50%"). This value must not exceed panes.max or be less then panes.min. |
tag-name | String | Specifies the HTML tag that will be generated for the pane. Defaults to div. |