1 2 Previous Next 22 Replies Latest reply on Jan 22, 2009 8:52 AM by ilya_shaikovsky Go to original post
      • 15. Re: ddm seems to pop in an extra line on every drop down
        ilya_shaikovsky

        Maybe you able to cut just your css from application to some kickstart project, try to localize the problem and share the project with us? We've applied just your css file and unfortunatelly still have some troubles with locating the problem with your styles added..

        • 16. Re: ddm seems to pop in an extra line on every drop down
          tony.herstell1

          Thanks Ilya and the RichFaces gang.

          I will try to do that.

          I have also done some investigations into the Calendar problems as well. It seems if the page is displayed and the cal does not popup then I re-fresh the page it does when the icon/date field is clicked on.

          If you register on the live box (www.selwynequestriancentre.co.nz) I will set you up as a certain role so you can see my development "bits" and you and me only will be able to see them.

          I found that the latest seam build's Upload component didnt work with my code so I swapped it out with yours.. Very cool... just worked once I put the on-event inside the uploadcomponent tag! DOH!

          In the process I found rich:beanValidator and if it does what it says on the box then that is very cool and will be being added today.

          Tony.

          • 17. Re: ddm seems to pop in an extra line on every drop down
            tony.herstell1

            It appears that the menu separator is simply not inheriting the class of the surrounding menu items.

            http://gaming.homeip.net/site

            is up if you want to look... look on about->trainers-> sub menu

            Cheers

            <td class="menu_item">
             <rich:dropDownMenu styleClass="menu_item_text" selectedLabelClass="menu_selected_item_text"
             itemClass="menu_inner_item" value="#{messages.menu_about}">
             <rich:menuItem submitMode="ajax" value="#{messages.menu_button_facilities}"
             action="#{facilitiesController.enter}" >
             <s:conversationPropagation type="none"/>
             </rich:menuItem>
             <rich:menuItem submitMode="ajax" value="#{messages.menu_button_location}"
             action="#{locationController.enter}" >
             <s:conversationPropagation type="none"/>
             </rich:menuItem>
             <rich:menuGroup value="#{messages.menu_trainers}">
             <rich:menuItem submitMode="ajax" value="#{messages.menu_button_brugs_nicholls}"
             action="#{trainerController.enter('brugs_nicholls')}" icon="#{basePath}/images/sec_red.ico">
             <s:conversationPropagation type="none"/>
             </rich:menuItem>
             <rich:menuItem submitMode="ajax" value="#{messages.menu_button_carmen_englert}"
             action="#{trainerController.enter('carmen_englert')}" icon="#{basePath}/images/sec_red.ico">
             <s:conversationPropagation type="none"/>
             </rich:menuItem>
             <rich:menuItem submitMode="ajax" value="#{messages.menu_button_greg_jamieson}"
             action="#{trainerController.enter('greg_jamieson')}" icon="#{basePath}/images/sec_red.ico">
             <s:conversationPropagation type="none"/>
             </rich:menuItem>
             <rich:menuSeparator/>
             <rich:menuItem submitMode="ajax" value="#{messages.menu_button_hubertus_hufendiek}"
             action="#{trainerController.enter('hubertus_hufendiek')}" >
             <s:conversationPropagation type="none"/>
             </rich:menuItem>
             </rich:menuGroup>
             </rich:dropDownMenu>
            </td>
            






            • 18. Re: ddm seems to pop in an extra line on every drop down
              tony.herstell1

              The code showing menu seperator problem is now live on www.selwynequestriancentre.co.nz


              go...

              -> About -> Trainers and you will see a devider that is not inheriting styles from its parents....

              • 19. Re: ddm seems to pop in an extra line on every drop down
                ilya_shaikovsky

                so you could just add the rich-menu-separator class with the line height you need.

                • 20. Re: ddm seems to pop in an extra line on every drop down
                  tony.herstell1

                  Sorry Ilya I am not sure what you mean... IHow does that set the colour?

                  • 21. Re: ddm seems to pop in an extra line on every drop down
                    ilya_shaikovsky

                    sorry I've just wanted to add that you should specify the class separately for your separator. It encoded just as a simple div on the same level with menu item divs. So your classes for menu items not affects separators. Seems we missed common separator class at dropDownMenu. It good to provide it as attribute also.

                    • 22. Re: ddm seems to pop in an extra line on every drop down
                      ilya_shaikovsky
                      1 2 Previous Next