Framework components not rendered correctly after updating to 3.1

  1. #1

    Framework components not rendered correctly after updating to 3.1

    Click image for larger version. 

Name:	badrender.png 
Views:	8 
Size:	38.4 KB 
ID:	22151

    Hello! I am seeing this symptom after updating Ext .NET framework to 3.1.
    Looks like every component coming from Ext .NET is not rendered correctly.

    The conditions are as follows:

    1. Visual Studio 2012 fully updated and licensed running on Windows 8.1.
    2. Running my web application through the RUN button, that launches the "on the fly" web server.
    As you can see, I am unable to debug the app.

    However, if I publish my web application to my local IIS, everything works fine.

    Any hints / clues?

    Thank you.
  2. #2
    Looks like Ext .NET 3.X will no longer work properly through the "on the fly" server for debugging in VS 2012.

    I updated to VS 2013 and it worked fine.

    So it seems that VS 2012 is no longer supported although it is stated that it should.
  3. #3
    There shouldn't be a problem with VS 2012. We'll take a look and see if we can reproduce the issue.

    Thanks for reporting.
    Geoffrey McGill
    Founder
  4. #4
    Do you use IIS under VS2012? Just check in what section (system.web or system.webServer) are registered etx.net http handler and module and check what web server do you use (for IIS7 you need to use system.webServer section)
  5. #5
    Visual Studio Development Server requires this in Web.config:
    <system.web>
      <httpHandlers>
        <add path="*/ext.axd" verb="*" type="Ext.Net.ResourceHandler" validate="false"/>
      </httpHandlers>
      <httpModules>
        <add name="DirectRequestModule" type="Ext.Net.DirectRequestModule, Ext.Net"/>
      </httpModules>
    </system.web>

Similar Threads

  1. [CLOSED] Expand a region with components not rendered
    By RCN in forum 2.x Legacy Premium Help
    Replies: 7
    Last Post: Oct 03, 2012, 7:50 PM
  2. [CLOSED] FileUpload in toolbar not rendered correctly
    By smart+ in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jan 31, 2011, 4:32 PM
  3. [CLOSED] [1.0] TopBar/ BottomBar not rendered correctly
    By klaus.schwarz in forum 1.x Legacy Premium Help
    Replies: 8
    Last Post: Oct 28, 2010, 9:09 AM
  4. Replies: 2
    Last Post: May 02, 2010, 4:33 PM
  5. Replies: 1
    Last Post: Jan 21, 2009, 12:46 PM

Tags for this Thread

Posting Permissions