[CLOSED] Custom control works in development after deployment

  1. #1

    [CLOSED] Custom control works in development after deployment

    Hi

    I have a custom control that is based on the SignalR example. There is a custom component built on the Ext.grid.Panel. While in the development environment, the control works as expected without any error. After deployment on two separate servers, the window control only shows a line across the top of the window, and the window does not position itself.

    @(
    X.Window()
            .ID("windowPackageNotify")
            .Width(500)
            .Height(300)
            .Modal(false)
            .AnchorHorizontal("c")
            .AnchorVertical("c")
            .Icon(Icon.Table)
            .Title("Package Notification")
            .CloseAction(CloseAction.Destroy)
            .Layout(LayoutType.Fit)
            .Items(
                Html.FB().PackageNotifyPanel().ID("packageNotify")
            )
    )
    My question is: What should I be looking for as a possible issue? I can certainly share all of my code or any part that might be helpful. Again, keep in mind everything works perfectly in my development environment, it is only on those server where I have deployed.

    Thank you
    Russ
    Last edited by Daniil; Feb 18, 2014 at 3:42 AM. Reason: [CLOSED]
  2. #2
    Hi Russ,

    There is, probably, a JavaScript error and/ or some JavaScript resource is not loaded. Please check up it up in the browser console (FireFox's FireBug or IE and Chrome Developer Tools).

Similar Threads

  1. Replies: 2
    Last Post: Jan 09, 2012, 7:18 AM
  2. DirectMethod works only on my development machine
    By paul-2011 in forum 1.x Help
    Replies: 1
    Last Post: Mar 19, 2011, 5:46 PM
  3. [CLOSED] [1.0] Custom booking calender control development required
    By webclouder in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Nov 10, 2010, 6:39 PM
  4. Replies: 10
    Last Post: Mar 30, 2010, 8:35 AM
  5. Replies: 3
    Last Post: Jul 29, 2008, 6:31 PM

Posting Permissions