how to do MVC RenderSection with MVC.Ext.Net controller ?

  1. #1

    how to do MVC RenderBody with MVC.Ext.Net controller ?

    S3mih,

    How can i use RenderBody with ext.Net controller:

    for example a simple layout page we do:

    @RenderBody();


    now how can i do that with ext.net controller like a ViewPort ?

    every response can be helpfull.
    Last edited by othmanee; Jun 05, 2014 at 1:57 PM.
  2. #2
    i find a solution, this link is very helpfull Link
    using ItemsFromSection(thispage, "SectionName")

    Layout page

    @(Html.X().Panel()
            .Title("Panel1")
            .Width(400)
            .Height(400)
            .Icon(Icon.Add)
            .Layout(LayoutType.Accordion)
            .ItemsFromSection(this, "section1")        
        )
    Content page

    @section section1{
         @(Html.X().Panel()
            .Title("Section 1 - Panel 1")       
            .Height(150) 
            .Icon(Icon.BulletPlus)
         )
    }

Similar Threads

  1. [CLOSED] Drop down value not posting to controller
    By MTSI in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 05, 2013, 2:22 PM
  2. [CLOSED] Ext JS Ext.app.Controller
    By bogc in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Dec 03, 2012, 7:33 PM
  3. Load Panel from MVC Controller
    By stu in forum 2.x Help
    Replies: 1
    Last Post: Jun 18, 2012, 11:26 PM
  4. Get Tab's url controller?
    By GeoffreyRen in forum 1.x Help
    Replies: 0
    Last Post: Jul 23, 2009, 4:39 PM
  5. How to embedded the extenal controller?
    By GeoffreyRen in forum 1.x Help
    Replies: 1
    Last Post: Jun 09, 2009, 2:20 PM

Tags for this Thread

Posting Permissions