[CLOSED] Theming

  1. #1

    [CLOSED] Theming

    I'm attempting to implement some theming based on the user themes from extjs at http://extjs.com/learn/Ext_Extensions#User_Themes and I'm not having much luck. Do I need to integrate the css into my asp.net theme or is there a better way to do this?
  2. #2

    RE: [CLOSED] Theming

    I'm going to post a detailed tutorial on how to use a custom theme, but basically it's just a matter of including the .css for the new theme after the default .css file has been added by the controls.

    The controls automatically add their required JavaScript and CSS into the Page <head>. By default they will be added as the last items in the head. You can control the position of the scripts/css in the head by adding a <cool:ScriptContainer> control into the <head> of your Page.</p>

    The link to the custom .css file must be added after the ScriptContainer.</p>

    Example</p>

    <head runat="server">
    *** <title>Untitled Page</title>
    *** <ext:ScriptContainer ID="ScriptContainer1" runat="server" />
    *** <link href="ExtJS/resources/css/xtheme-green.css" rel="stylesheet" type="text/css" />
    </head>
    </p>

    The path to the custom xtheme .css and related images folder should be to a location within the web application. The path above (ExtJS/resources/) is*a typical location to store the xtheme.</p>

    Example</p>

    ExtJS/resources/css
    ExtJS/resources/images/[theme]
    </p>

    *</p>

    Hope this helps.</p>
    Geoffrey McGill
    Founder
  3. #3

    RE: [CLOSED] Theming



    You might also be interested in the following forum post which details how to change the embedded Style by using the global Web.config settings or modifying a Session value.

    http://forums.ext.net/showthread.php...id=11-4-1.aspx

    Hope this helps.
    Geoffrey McGill
    Founder
  4. #4

    RE: [CLOSED] Theming

    Rey posted today about Theme options for ExtJS. Check it out.

    We're also working on broader Theme support for an upcoming release.
    Geoffrey McGill
    Founder
  5. #5

    RE: [CLOSED] Theming

    I noticed the following extjs thread listing available Theme's. Thought it might be helpful.

    http://extjs.com/forum/showthread.php?t=41291
    Geoffrey McGill
    Founder
  6. #6

    RE: [CLOSED] Theming

    very good
    it's help for me!
    thanks

Similar Threads

  1. [CLOSED] Theming in Ext.Net
    By tlfdesarrollo in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jun 14, 2012, 9:21 PM
  2. Is Theming possible?
    By Ploetzeneder in forum 1.x Help
    Replies: 2
    Last Post: Feb 04, 2011, 3:07 PM
  3. [CLOSED] Safari/Chrome issue w/ASP.NET Theming
    By randy85253 in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Dec 09, 2009, 4:26 PM
  4. [CLOSED] alignTo not working when doing custom theming
    By randy85253 in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Aug 05, 2009, 5:21 PM

Posting Permissions