Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Enterprise Blue Theme

    Congratulations on Enterprise Blue theme

    I just noticed that that the Showcase demo has been updated with an Enterprise Blue skin. I really like the vibrant colors and the style changes. It looks very sharp and professional. The revised Enterprise Gray theme also looks nice and sharp. Great job guys.

    I checked SVN and did not find these new skins in there. When are these skins going to be available with SmartGWT LGPL? I can't wait to upgrade my project to use the Enterprise Blue theme.
    Last edited by mike.art1; 23 Nov 2009, 11:36.

    #2
    Enterprise Blue Skin download

    I'm also interested in new Enterprise Blue skin. Can you please let me know where can i download it?

    Comment


      #3
      Skins..

      Is the Enterprise Blue skin available for download for SmartClient ? I'am surprised its available for SmartGWT but not the native implementation . Also , the SmartClient Demo page has a pretty good skin . Is that skin available for download ? I'am aware that we can change the skin for the demo widgets , but I'am talking about the demo screen itself .

      Comment


        #4
        Enterprise Blue theme is available with SmartGWT 2.0

        I have downloaded the latest Smart GWT jars and found that Enterprise Blue Theme is attached with it. Somehow I am unable to apply this new Blue theme in my application. Any guesses what could go wrong with it?

        Comment


          #5
          Originally posted by rsivva
          I have downloaded the latest Smart GWT jars and found that Enterprise Blue Theme is attached with it. Somehow I am unable to apply this new Blue theme in my application. Any guesses what could go wrong with it?
          rsivva,
          How are you trying to apply the EnterpriseBlue theme? And what are you observing when you say you cannot apply the theme?

          Have you examined the Showcase sample module and host file?

          Sanjiv

          Comment


            #6
            sjivan.
            Sorry for my late response. I was out of station for quiet some time and could not reply. Anyway thanks for your help.

            Actually I was still using old load_skin.js file but later i realised and changes it. Now it is working fine and I am able to see the Blue Theme.

            Comment


              #7
              They did something unintuitive with this.. instead of allowing you to just say - hey let's use that new theme! I'll just add this to my existing App.gwt.xml file and boom!

              Code:
              <inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlue"/>
              <inherits name="com.smartclient.theme.enterpriseblue.EnterpriseBlueResources"/>
              Well, you probably had an old

              Code:
                <inherits name="com.smartgwt.SmartGwt"/>
              in there. It turns out that module implicitly includes the regular Enterprise scheme, and that winds up overriding a lot of the pretty blueness. So you need to get rid of that and put in

              Code:
              <inherits name="com.smartgwt.SmartGwtNoTheme" />
              in addition to your enterprise blue inherits elements.

              -- One example is worth a thousand forum posts...
              Last edited by KenG; 17 Feb 2010, 09:51.

              Comment


                #8
                Originally posted by KenG
                -- One example is worth a thousand forum posts...
                I couldn't agree more.

                Comment


                  #9
                  That's why it's in the FAQ.

                  Comment


                    #10
                    Originally posted by Isomorphic
                    That's why it's in the FAQ.
                    Wow, sorry guys. In this one, because I can't see the reference to this Enterprise Blue Theme fix ?

                    Comment


                      #11
                      That's the right one, it's this question:

                      I'm seeing visual glitches like unnecessary scrollbars, gaps in headers or misplaced elements.
                      ...
                      Alternatively, if you have switched your Smart GWT theme you may be loading two Smart GWT
                      themes at once, because when you inherit the com.smartgwt.SmartGwt module you also inherit the
                      Enterprise theme. To fix, inherit com.com.smartgwt.SmartGwtNoTheme instead.
                      If you can suggest better wording to help people find it, let us know.

                      Comment

                      Working...
                      X