[CLOSED] Ext.NET control not showing

  1. #1

    [CLOSED] Ext.NET control not showing

    Hi eveybody, I'm a new member.

    I upgraded my Visual Studio Solution from Ext.NET 1.x to Ext.NET 2.0.

    I've been developing for some days, fixing my pages, everithing workiing well.

    Yesterday I deployed my web application to a IIS.

    All at once all the Ext.NET controls stopped showing on the page, both in deployed and dev environment.

    I tried everything but wiht non result. At last I could see again my controls with the following setting in the web.config.

    <extnet idMode="Explicit" initScriptMode="Inline" scriptMode="Debug" theme="Gray"  />
    I don't think this is very optimized and my app now is extremely slow.

    Please, con you help my to find out what happened?

    Thanks in advance.
    Marco

    P.S. I attached my "web.config" file renamed as "web.txt"
    Attached Files
    Last edited by Daniil; Apr 23, 2012 at 9:40 AM. Reason: [CLOSED]
  2. #2
    Hi,

    Please clarify what Ext.NET version do you use? DP1, Beta or the last sources from SVN?

    initScriptMode="Inline/Linked"
    should not cause any significant difference in the performance aspect.

    There was a bug with
    initScriptMode="Linked"
    which is already fixed.

    my app now is extremely slow
    So, there should be some other reasons.

    Please investigate the following threads regarding to optimizing an application:
    http://forums.ext.net/showthread.php?13726
    http://forums.ext.net/showthread.php?15699


    P.S. I attached my "web.config" file renamed as "web.txt"
    We prefer the required code to be posted directly here wrapped in [CODE ] tags. Generally, I don't think a full Web.config is required at this stage.
  3. #3
    Hi Daniil,
    thank you for your answer.

    I am using 2.0 Beta.

    My big issue at the moment is not performance but the missing Ext.NET controls.

    Can you explain why controls show again with the "Inline" option instead of "Linked"?

    By the way, wich one is the best choice?

    Thanks again
    Marco
  4. #4
    Quote Originally Posted by marco.morreale View Post
    Can you explain why controls show again with the "Inline" option instead of "Linked"?
    There is just a bug in Beta which has been fixed in SVN.

    Quote Originally Posted by marco.morreale View Post
    By the way, wich one is the best choice?
    Well, I can't see any significant difference.

    "Inline" (default) means that Ext.Net onReady script will be rendered on a page as inline script.
    Example
    <script type="text/javascript">
        /* JavaScript code */
    </script>
    "Linked" means that Ext.Net onReady script will be rendered on a page as linked script.

    Example
    <script type="text/javascript" src="/extnet/extnet-init-js/ext.axd?9483b140eaeb4f62803e46fc336c15f8"></script>

Similar Threads

  1. [CLOSED] ComboBox in user control binding but not showing data
    By Digital.Dynamics in forum 2.x Legacy Premium Help
    Replies: 7
    Last Post: May 08, 2012, 12:09 PM
  2. Calendar not showing inside of tab control
    By craig2005 in forum 1.x Help
    Replies: 3
    Last Post: Dec 21, 2010, 4:44 PM
  3. [CLOSED] User Control not showing on 2nd Tab
    By CMA in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jan 11, 2010, 12:59 PM
  4. Replies: 1
    Last Post: Jul 01, 2009, 3:14 PM
  5. [CLOSED] Tab not showing
    By alexp in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 03, 2009, 7:18 AM

Tags for this Thread

Posting Permissions