EXT.Net FAQ?

Trying to load the SECOND chart Asynchronously:http://forums.ext.net/showthread.php?20951-CLOSED-Trying-to-load-the-SECOND-chart-Asynchronously

 2.0 Chart - Update LegendConfig:http://forums.ext.net/showthread.php?19088-2-0-Chart-Update-LegendConfig

 Async loading and re-loading of panels in a reporting portal - Suggestions?:http://forums.ext.net/showthread.php?16895-CLOSED-Async-loading-and-re-loading-of-panels-in-a-reporting-portal-Suggestions

 Expand TreePanel Node in OnReadData:http://forums.ext.net/showthread.php?23324-Expand-TreePanel-Node-in-OnReadData

Store refresh issue:http://forums.ext.net/showthread.php?20809-CLOSED-Store-refresh-issue

THe Gridpanel with Store can't Bind the Data via Page in DataSource using the customizing DirectMethod or DirectEvent:http://forums.ext.net/showthread.php?19477-CLOSED-THe-Gridpanel-with-Store-can-t-Bind-the-Data-via-Page-in-DataSource-using-the-customizing-DirectMethod-or-DirectEvent

 CRUD Grid Example:http://examples.ext.net/#/GridPanel/Saving_Variations/StoreCustomLogic/

Loader with Html renderer and Window rendering:http://forums.ext.net/showthread.php?19047-CLOSED-Loader-with-Html-renderer-and-Window-rendering

ComponentLoader with UserControl containing Ext.Net control with DirectMethods:http://forums.ext.net/showthread.php?18197-CLOSED-ComponentLoader-with-UserControl-containing-Ext-Net-control-with-DirectMethods

Manually loading controls:http://forums.ext.net/showthread.php?22201-CLOSED-Manually-loading-controls

 

 

 

 <ext:Panel ID="Panel2" runat="server" Height="200" Width="500" Layout="FitLayout"
        Title="Load UserControl from the Page (static DirectMethod, manual loading)">
        <Loader ID="Loader2" runat="server" Url="/Test/UserControl/" AutoLoad="false" Mode="Component">
            <LoadMask ShowMask="true" />
        </Loader>
        <Buttons>
            <ext:Button ID="Button1" runat="server" Text="Load" Icon="PluginGo">
                <Listeners>
                    <Click Handler="this.up('panel').load();this.disable();" />
                </Listeners>
            </ext:Button>
        </Buttons>
    </ext:Panel>

 

<ext:Panel ID="_pnl" runat="server" Flex="1" Layout="Fit" Width="250" Region="West"
               Collapsible="true">
               <Loader runat="server" DisableCaching="true" Url="/ViewEngine/Load" Mode="Component">
                   <Params>
                       <ext:Parameter Name="containerID" Value="_pnl" Mode="Value" />
                   </Params>
                   <Listeners>
                       <Load Handler="eval(response.responseText);" />
                   </Listeners>
               </Loader>
           </ext:Panel>
public ContentResult Load(String containerID)
       {
           var contentResult = new ContentResult();
           Panel p = new Panel("Title");
           p.Height = 200;
           p.Html = "Hello World";
           contentResult.Content = string.Format("<script>{0}</script>", p
               .ToScript(RenderMode.AddTo, containerID));
           return contentResult;
       }

 

 

你可能感兴趣的:(.net)