[CLOSED] Grouptabpanel in window prevents window from rendering

Page 3 of 3 FirstFirst 123
  1. #21
    Hi,

    sorry the resource are there, i was just looking in the wrong directory, but I am still get the same errors. I sent you the project.
  2. #22
    Please uncomment this
    <httphandlers>
      <add path="*/ext.axd" verb="*" type="ext.net.resourcehandler" validate="false"/>
    </httphandlers>
    in the Web.config.

    Also add this
    routes.IgnoreRoute("{exclude}/{extnet}/ext.axd");
    into the RegisterRoutes method in Global.asax.

    It will look like this.

    RegisterRoutes
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
        routes.IgnoreRoute("{exclude}/{extnet}/ext.axd");
    
        routes.MapRoute(
            "Default", // Route name
            "{controller}/{action}/{id}", // URL with parameters
            new { controller = "Home", action = "Index", id = UrlParameter.Optional } // Parameter defaults
        );
    }
  3. #23
    Thanks, please mark as closed.
Page 3 of 3 FirstFirst 123

Similar Threads

  1. [CLOSED] Loader with Html renderer and Window rendering
    By paulc in forum 2.x Legacy Premium Help
    Replies: 33
    Last Post: Jun 25, 2013, 7:43 AM
  2. [CLOSED] message box rendering behind the modal window
    By SymSure in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Aug 10, 2012, 4:12 PM
  3. Replies: 1
    Last Post: Nov 11, 2011, 2:48 PM
  4. [CLOSED] ICONs are not rendering in popup window
    By rnachman in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 28, 2011, 6:04 PM
  5. [CLOSED] [1.0] Desktop with Window containing GroupTabPanel
    By danielg in forum 1.x Legacy Premium Help
    Replies: 11
    Last Post: Apr 15, 2010, 8:21 AM

Posting Permissions