2 Replies Latest reply on Sep 17, 2011 5:10 AM by rclsilver

    Richfaces 4_x_x and Split Panel Container

    rclsilver

      Hi,

       

      I would like to know if split planel containers are released in richfaces 4. I found a page which describes plan of features. This functionnality was planned to version 3.3.1.

       

      Are the layout components now available ? I am using the lastest version taken with maven.

       

      Thanks for your support.

        • 1. Re: Richfaces 4_x_x and Split Panel Container
          jsoye

          Hi Thomas,

           

          I used the jQuery spiltter plugin and it was painless. See http://methvin.com/splitter/

           

                    <script type="text/javascript" src="#{request.contextPath}/...../splitter.js"></script>

                   

                    <script type="text/javascript">

                         jQuery(document).ready(function() {

                              jQuery("#MySplitter").splitter({

                                   type: "v",

                                   outline: true,

                                   minLeft: 150, sizeLeft: 200, minRight:800,

                                   resizeToWidth: true,

                                   accessKey: 'L'

                              });

                         });

                    </script>

           

           

                              <div id="MySplitter">

                            <div> Left content goes here </div>

                            <div> Right content goes here </div>

                    </div>

          1 of 1 people found this helpful
          • 2. Re: Richfaces 4_x_x and Split Panel Container
            rclsilver

            Hi jsoye,

             

            Thanks you for your answer. I've done what i want to do with jQuery plugin splitter.

             

            I hope that Richfaces will integrate this functionality in the future...

             

            Have a good day