ASP.NET Splitter - Fixed Splitter

Try to move the splitter separator.
The splitter is not resizable.



The feature also works in horizontal splitter.

Example code

    <obspl:Splitter IsResizable="false" id="spl1" runat="server">
        <LeftPanel>
            <Content>
                ... Left Panel content here ...
    ...

VB.NET
spl1.IsResizable = false


C#
spl1.IsResizable = false;

"I'm pretty happy on replacing ComponentArt's splitter with yours, I'm getting vastly superior performance out of it. On resize of the CA splitter it can take 2-3 seconds to complete a resize of a complex page whereas yours is maybe .5 of a second max."

David Homer