Articles in this section
Category / Section

How to toggle the splitter pane expand and collapse action?

1 min read

Description

To toggle the split pane in any event at dynamically.

Solution

We can achieve this requirement using collapse and expand methods of splitter control. These public methods can be called from any events (for example button click event) to expand / collapse the pane of splitter by passing the index value of the required pane. On dynamic handler check for the expand/collapse state of the pane and toggle them using the methods.

1)If split pane (for example) has “collapsed” class, the pane is in collapsed state. Then, we can expand the pane by using expand method with passing the paneIndex argument.

2)If it has “expanded” class, the pane is in collapsed state. Then, we can collapse the pane by using collapse method with passing the paneIndex argument.   

Refer to the following code example:

[JavaScript]

$(function () {

           $("#outterSpliter").ejSplitter({

                height: "250px", width: "80%",

                orientation: ej.Orientation.Horizontal,

                properties: [{ paneSize: "50%" }],

                cssClass: "splitter"

            });

            $("#innerSpliter").ejSplitter({

                orientation: ej.Orientation.Vertical,

                properties: [{ paneSize: "50%" }]

            });

            //Object for inner splitter will be created like below

            innerSplitterObj = $("#innerSpliter").data("ejSplitter");

});

$("#collapse_button").bind("click", function () {

            innerSplitterObj.collapse(0);

});

$("#expand_button").bind("click", function () {

            innerSplitterObj.expand(0);

});

 

Final output

Nested Splitter

Sample

JavaScript

ASP .NET MVC

ASP .NET CORE

ASP .NET Web Forms

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied