[CLOSED] How to show eventmask while directevent, who will post file content, prepares data

  1. #1

    [CLOSED] How to show eventmask while directevent, who will post file content, prepares data

    I have to download a xls(or other) file from server. I would show an eventmask while server is preparing data

    i tried the following via directevent with eventmask but it doesn't show the mask and something is wrong because I got a bad response (??).

    Furthermore, with onclik event, how could an eventmask be shown ?

    follow an example test, two buttons: one for directevent and one for onclick event

    thanks

    <%@ Page Language="C#" %>
    <%@ Import Namespace="System.Xml.Xsl" %>
    <%@ Import Namespace="System.Xml" %>
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <script runat="server">
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!this.IsPostBack)
            {
                this.Store1.DataSource = new object[]
                {
                    new object[] { 1, "3m Co", 71.72, 0.02, 0.03, "9/1 12:00am" },
                    new object[] { 2, "Alcoa Inc", 29.01, 0.42, 1.47, "9/1 12:00am" },
                    new object[] { 3, "Altria Group Inc", 83.81, 0.28, 0.34, "9/1 12:00am" },
                    new object[] { 4, "American Express Company", 52.55, 0.01, 0.02, "9/1 12:00am" },
                    new object[] { 5, "American International Group, Inc.", 64.13, 0.31, 0.49, "9/1 12:00am" },
                    new object[] { 6, "AT&T Inc.", 31.61, -0.48, -1.54, "9/1 12:00am" },
                    new object[] { 7, "Boeing Co.", 75.43, 0.53, 0.71, "9/1 12:00am" },
                    new object[] { 8, "Caterpillar Inc.", 67.27, 0.92, 1.39, "9/1 12:00am" },
                    new object[] { 9, "Citigroup, Inc.", 49.37, 0.02, 0.04, "9/1 12:00am" },
                    new object[] { 10, "E.I. du Pont de Nemours and Company", 40.48, 0.51, 1.28, "9/1 12:00am" },
                    new object[] { 11, "Exxon Mobil Corp", 68.1, -0.43, -0.64, "9/1 12:00am" },
                    new object[] { 12, "General Electric Company", 34.14, -0.08, -0.23, "9/1 12:00am" },
                    new object[] { 13, "General Motors Corporation", 30.27, 1.09, 3.74, "9/1 12:00am" },
                    new object[] { 14, "Hewlett-Packard Co.", 36.53, -0.03, -0.08, "9/1 12:00am" },
                    new object[] { 15, "Honeywell Intl Inc", 38.77, 0.05, 0.13, "9/1 12:00am" },
                    new object[] { 16, "Intel Corporation", 19.88, 0.31, 1.58, "9/1 12:00am" },
                    new object[] { 17, "International Business Machines", 81.41, 0.44, 0.54, "9/1 12:00am" },
                    new object[] { 18, "Johnson & Johnson", 64.72, 0.06, 0.09, "9/1 12:00am" },
                    new object[] { 19, "JP Morgan & Chase & Co", 45.73, 0.07, 0.15, "9/1 12:00am" },
                    new object[] { 20, "McDonald\"s Corporation", 36.76, 0.86, 2.40, "9/1 12:00am" },
                    new object[] { 21, "Merck & Co., Inc.", 40.96, 0.41, 1.01, "9/1 12:00am" },
                    new object[] { 22, "Microsoft Corporation", 25.84, 0.14, 0.54, "9/1 12:00am" },
                    new object[] { 23, "Pfizer Inc", 27.96, 0.4, 1.45, "9/1 12:00am" },
                    new object[] { 24, "The Coca-Cola Company", 45.07, 0.26, 0.58, "9/1 12:00am" },
                    new object[] { 25, "The Home Depot, Inc.", 34.64, 0.35, 1.02, "9/1 12:00am" },
                    new object[] { 26, "The Procter & Gamble Company", 61.91, 0.01, 0.02, "9/1 12:00am" },
                    new object[] { 27, "United Technologies Corporation", 63.26, 0.55, 0.88, "9/1 12:00am" },
                    new object[] { 28, "Verizon Communications", 35.57, 0.39, 1.11, "9/1 12:00am" },
                    new object[] { 29, "Wal-Mart Stores, Inc.", 45.45, 0.73, 1.63, "9/1 12:00am" }
                };
    
                this.Store1.DataBind();
            }
        }
    
        protected void ToExcelDE(object sender, DirectEventArgs e)
        {
            string json = this.Hidden1.Value.ToString();
            StoreSubmitDataEventArgs eSubmit = new StoreSubmitDataEventArgs(json, null);
            XmlNode xml = eSubmit.Xml;
    
            // =======================================
            // WARNING - SLEEP 10 SECONDS
            System.Threading.Thread.Sleep(10000);
            // =======================================
    
            this.Response.Clear();
            this.Response.ContentType = "application/vnd.ms-excel";
            this.Response.AddHeader("Content-Disposition", "attachment; filename=submittedData.xls");
    
            XslCompiledTransform xtExcel = new XslCompiledTransform();
    
            xtExcel.Load(Server.MapPath("Excel.xsl"));
            xtExcel.Transform(xml, null, this.Response.OutputStream);
            this.Response.End();
        }
    
        protected void ToExcel(object sender, EventArgs e)
        {
            string json = this.Hidden1.Value.ToString();
            StoreSubmitDataEventArgs eSubmit = new StoreSubmitDataEventArgs(json, null);
            XmlNode xml = eSubmit.Xml;
    
            // =======================================
            // WARNING - SLEEP 10 SECONDS
            System.Threading.Thread.Sleep(10000);
            // =======================================
    
            this.Response.Clear();
            this.Response.ContentType = "application/vnd.ms-excel";
            this.Response.AddHeader("Content-Disposition", "attachment; filename=submittedData.xls");
    
            XslCompiledTransform xtExcel = new XslCompiledTransform();
    
            xtExcel.Load(Server.MapPath("Excel.xsl"));
            xtExcel.Transform(xml, null, this.Response.OutputStream);
            this.Response.End();
        }
    </script>
    <!DOCTYPE html>
    <html>
    <head id="Head1" runat="server">
        <title>Export Data from GridPanel into XML, Excel or CSV using a full PostBack - Ext.NET
            Examples</title>
        <link href="/resources/css/examples.css" rel="stylesheet" />
        <script>
            var saveData = function () {
                App.Hidden1.setValue(Ext.encode(App.GridPanel1.getRowsValues({ selectedOnly: false })));
            };
        </script>
    </head>
    <body>
        <form id="Form1" runat="server">
        <ext:ResourceManager ID="ResourceManager1" runat="server" />
        <h1>
            Export Data from GridPanel into XML, Excel or CSV using a full PostBack</h1>
        <ext:Hidden ID="Hidden1" runat="server" />
        <ext:Store ID="Store1" runat="server">
            <Model>
                <ext:Model ID="Model1" runat="server">
                    <Fields>
                        <ext:ModelField Name="id" Type="Int" />
                        <ext:ModelField Name="company" />
                        <ext:ModelField Name="price" Type="Float" />
                        <ext:ModelField Name="change" Type="Float" />
                        <ext:ModelField Name="pctChange" Type="Float" />
                        <ext:ModelField Name="lastChange" Type="Date" DateFormat="M/d hh:mmtt" />
                    </Fields>
                </ext:Model>
            </Model>
        </ext:Store>
        <ext:GridPanel ID="GridPanel1" runat="server" StoreID="Store1" Title="Export Data"
            Width="600" Height="350">
            <ColumnModel ID="ColumnModel1" runat="server">
                <Columns>
                    <ext:Column ID="Column1" runat="server" Text="Company" DataIndex="company" Flex="1" />
                    <ext:Column ID="Column2" runat="server" Text="Price" Width="75" DataIndex="price">
                        <Renderer Format="UsMoney" />
                    </ext:Column>
                    <ext:Column ID="Column3" runat="server" Text="Change" Width="75" DataIndex="change" />
                    <ext:Column ID="Column4" runat="server" Text="Pct.Change" Width="75" DataIndex="pctChange" />
                    <ext:DateColumn ID="DateColumn1" runat="server" Text="Last Updated" Width="85" DataIndex="lastChange" />
                </Columns>
            </ColumnModel>
            <SelectionModel>
                <ext:RowSelectionModel ID="RowSelectionModel1" runat="server" Mode="Multi" />
            </SelectionModel>
            <View>
                <ext:GridView ID="GridView1" runat="server" StripeRows="true" TrackOver="true" />
            </View>
            <TopBar>
                <ext:Toolbar ID="Toolbar1" runat="server">
                    <Items>
                        <ext:ToolbarFill ID="ToolbarFill1" runat="server" />
                        <ext:Button ID="btnExcelDE" runat="server" Text="xls DE" Icon="PageExcel" OnClick="ToExcel"
                            AutoPostBack="true">
                            <DirectEvents>
                                <Click OnEvent="ToExcelDE" Before="saveData">
                                    <EventMask ShowMask="false" Target="CustomTarget" CustomTarget="GridPanel1" Msg="Loading ..." />
                                </Click>
                            </DirectEvents>
                        </ext:Button>
                        <ext:Button ID="btnExcel" runat="server" Text="xls Click" Icon="PageExcel" OnClick="ToExcel"
                            AutoPostBack="true">
                            <Listeners>
                                <Click Fn="saveData" />
                            </Listeners>
                        </ext:Button>
                    </Items>
                </ext:Toolbar>
            </TopBar>
        </ext:GridPanel>
        </form>
    </body>
    </html>
    Excel.xsl

    
    <xsl:stylesheet version="1.0"
        xmlns="urn:schemas-microsoft-com:office:spreadsheet"
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns:msxsl="urn:schemas-microsoft-com:xslt"
     xmlns:user="urn:my-scripts"
     xmlns:o="urn:schemas-microsoft-com:office:office"
     xmlns:x="urn:schemas-microsoft-com:office:excel"
     xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet">
    
      <xsl:template match="/">
        <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
          xmlns:o="urn:schemas-microsoft-com:office:office"
          xmlns:x="urn:schemas-microsoft-com:office:excel"
          xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
          xmlns:html="http://www.w3.org/TR/REC-html40">
          <xsl:apply-templates/>
        </Workbook>
      </xsl:template>
    
    
      <xsl:template match="/*">
        <Worksheet>
          <xsl:attribute name="ss:Name">
            <xsl:value-of select="local-name(/*/*)" />
          </xsl:attribute>
          <Table x:FullColumns="1" x:FullRows="1">
            <Row>
              <xsl:for-each select="*[position() = 1]/*">
                <Cell>
                  <Data ss:Type="String">
                    <xsl:value-of select="local-name()" />
                  </Data>
                </Cell>
              </xsl:for-each>
            </Row>
            <xsl:apply-templates/>
          </Table>
        </Worksheet>
      </xsl:template>
    
    
      <xsl:template match="/*/*">
        <Row>
          <xsl:apply-templates/>
        </Row>
      </xsl:template>
    
    
      <xsl:template match="/*/*/*">
        <Cell>
          <Data ss:Type="String">
            <xsl:value-of select="." />
          </Data>
        </Cell>
      </xsl:template>
    
    
    </xsl:stylesheet>
    Last edited by Daniil; Jul 04, 2013 at 1:12 PM. Reason: [CLOSED]
  2. #2
    Hi @tanky65,

    Quote Originally Posted by tanky65 View Post
    it doesn't show the mask
    I see ShowMask="false". It should be true. Though, there is a problem of masking an AJAX download request. Such a request doesn't fire success/failure events. So, no way to hide a mask after request. Here is some approach helpful in some scenarios.
    http://forums.ext.net/showthread.php?19430#post83757

    Quote Originally Posted by tanky65 View Post
    I got a bad response (??).
    I think you should set up IsUpload="true" for the DirectEvent

    Quote Originally Posted by tanky65 View Post
    Furthermore, with onclik event, how could an eventmask be shown ?
    It causes a hard PostBack with page reload. So, I am not sure how masking should look on page reload. Seems, no way. You could show a mask by
    Ext.net.Mask.show();
    in a Button's Click client side handler, but it will be erased very soon with page reload (maybe, it won't even appear).
  3. #3
    I set the mask to false while making the example, sorry.
    ShowMask="false"
    But my real issue was indeed

    So, no way to hide a mask after request

    I read the link you provided and I think the solution reported is a very good one: time to download the file has no real impact on perf. and waiting time.
    Thanks again, you can close it

Similar Threads

  1. Replies: 0
    Last Post: Mar 04, 2013, 7:41 AM
  2. [CLOSED] How to post ckeditor data ?
    By Daly_AF in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jan 21, 2013, 11:11 PM
  3. Replies: 4
    Last Post: Oct 10, 2012, 1:56 PM
  4. EventMask doesn't show
    By vadym.f in forum 1.x Help
    Replies: 3
    Last Post: Jan 19, 2012, 5:19 PM
  5. [CLOSED] ResourceManager show EventMask in all DirectEvents calls
    By SouthDeveloper in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Feb 11, 2011, 1:40 PM

Posting Permissions