[CLOSED] MVC and Window show View

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    [CLOSED] MVC and Window show View

    Hi, i don't to show a view in a window in MVC, i view the sample window, but i open a link Url:

    @(X.Window()
            .ID("Window1")
            .Title("Ext.NET")
            .Width(1000)
            .Height(500)
            .Modal(true)
            .AutoRender(false)
            .Collapsible(true)
            .Maximizable(true)
            .Hidden(true)
            .Loader(X.ComponentLoader()
                .Url("http://www.ext.net")
                .Mode(LoadMode.Frame)
                .LoadMask(lm => lm.ShowMask = true)
            )
        )
    How to show a View in a Window ?

    i test this, but not work.

     @(X.Window()
                .ID("winOrdine")
            .Title("Ext.NET")
            .Width(1000)
            .Height(500)
            .Modal(true)
            .AutoRender(false)
            .Collapsible(true)
            .Maximizable(true)
            .Hidden(true)
            .ItemsFromAction("Index","Orders")
            .Loader(X.ComponentLoader()
                .Mode(LoadMode.Frame)
                .LoadMask(lm => lm.ShowMask = true)
            )
        )
    Help my

    Thanks
    Aurelio
    Last edited by Daniil; Jan 08, 2015 at 11:02 AM. Reason: [CLOSED]

Similar Threads

  1. [CLOSED] Calendar: Is it possible to set 2 weeks view to show the event?
    By csssi_coolite in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: May 14, 2012, 7:54 AM
  2. Replies: 3
    Last Post: Mar 19, 2012, 12:35 PM
  3. Replies: 2
    Last Post: Feb 14, 2012, 8:57 PM
  4. Replies: 1
    Last Post: Jan 27, 2012, 11:32 AM
  5. [CLOSED] Show sum in groupping view
    By ppettigrew in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Jul 02, 2010, 6:49 PM

Posting Permissions