ASP.NET Splitter - Knowledge Base

« Back to Knowledge Base list

Display only the right panel

Q:

How can I display only the right Splitter panel?

A:

Edit the "style.css" file your Splitter control uses (defined by StyleFolder property).

Add property "display:none" to both css classes: ob_spl_leftpanel, ob_spl_dividervertical.


        .ob_spl_leftpanel
        {
                display:none;
        }

        .ob_spl_dividervertical
        {
                display:none;
        }

"Everything is almost a perfection... Great Job!! Keep up the good work!!"

Abhisek