[CLOSED] Cell commands seem to be broken

  1. #1

    [CLOSED] Cell commands seem to be broken

    Adding a cell command to a column now raises an error "this.plugins is undefined" in coolite-data.js
    It seems to have been broken in revision 1797.

    the following used works in revision 1796:

    
    <%@ page language="C#" %>
    
    <%@ register assembly="Coolite.Ext.Web" namespace="Coolite.Ext.Web" tagprefix="ext" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <script runat="server">
      protected void Page_Load(object sender, EventArgs e)
      {
        if (!Ext.IsAjaxRequest)
        {
          object data = new object[]
          {
                    new object[] {"3m Co", 71.72, 0.02, 0.03, "01/01/2008"},
                    new object[] {"Alcoa Inc", 29.01, 0.42, 1.47, "02/01/2008"},
                    new object[] {"Altria Group Inc", 83.81, 0.28, 0.34, "03/01/2008"},
                    new object[] {"American Express Company", 52.55, 0.01, 0.02, "10/01/2008"},
                    new object[] {"American International Group, Inc.", 64.13, 0.31, 0.49, "09/01/2008"},
                    new object[] {"AT&amp;T Inc.", 31.61, -0.48, -1.54, "01/03/2008"},
                    new object[] {"Boeing Co.", 75.43, 0.53, 0.71, "01/04/2008"},
                    new object[] {"Caterpillar Inc.", 67.27, 0.92, 1.39, "01/01/2008"},
                    new object[] {"Citigroup, Inc.", 49.37, 0.02, 0.04, "02/02/2008"},
                    new object[] {"E.I. du Pont de Nemours and Company", 40.48, 0.51, 1.28, "03/05/2008"},
                    new object[] {"Exxon Mobil Corp", 68.1, -0.43, -0.64, "01/01/2008"},
                    new object[] {"General Electric Company", 34.14, -0.08, -0.23, "01/01/2008"},
                    new object[] {"General Motors Corporation", 30.27, 1.09, 3.74, "01/01/2008"},
                    new object[] {"Hewlett-Packard Co.", 36.53, -0.03, -0.08, "01/01/2008"},
                    new object[] {"Honeywell Intl Inc", 38.77, 0.05, 0.13, "01/01/2008"},
                    new object[] {"Intel Corporation", 19.88, 0.31, 1.58, "01/01/2008"},
                    new object[] {"International Business Machines", 81.41, 0.44, 0.54, "01/01/2008"},
                    new object[] {"Johnson &amp; Johnson", 64.72, 0.06, 0.09, "01/01/2008"},
                    new object[] {"JP Morgan &amp; Chase &amp; Co", 45.73, 0.07, 0.15, "01/01/2008"},
                    new object[] {"McDonald\"s Corporation", 36.76, 0.86, 2.40, "01/01/2008"},
                    new object[] {"Merck &amp; Co., Inc.", 40.96, 0.41, 1.01, "01/01/2008"},
                    new object[] {"Microsoft Corporation", 25.84, 0.14, 0.54, "01/01/2008"},
                    new object[] {"Pfizer Inc", 27.96, 0.4, 1.45, "01/01/2008"},
                    new object[] {"The Coca-Cola Company", 45.07, 0.26, 0.58, "01/01/2008"},
                    new object[] {"The Home Depot, Inc.", 34.64, 0.35, 1.02, "01/01/2008"},
                    new object[] {"The Procter &amp; Gamble Company", 61.91, 0.01, 0.02, "01/01/2008"},
                    new object[] {"United Technologies Corporation", 63.26, 0.55, 0.88, "01/01/2008"},
                    new object[] {"Verizon Communications", 35.57, 0.39, 1.11, "01/01/2008"},
                    new object[] {"Wal-Mart Stores, Inc.", 45.45, 0.73, 1.63, "01/01/2008"}
                };
    
          this.Store1.DataSource = data;
          this.Store1.DataBind();
        }
      }
    </script>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
      <title></title>
    </head>
    <body>
      <form id="form1" runat="server">
      <ext:scriptmanager runat="server" />
      <ext:store id="Store1" runat="server">
        <reader>
          <ext:arrayreader>
            <fields>
              <ext:recordfield name="company" />
              <ext:recordfield name="price" type="Float" />
            </fields>
          </ext:arrayreader>
        </reader>
      </ext:store>
      <ext:gridpanel id="GridPanel1" runat="server" storeid="Store1" title="Array Grid" width="600" height="350" autoexpandcolumn="Company">
        <columnmodel runat="server">
          <columns>
            <ext:column columnid="Company" header="Company" width="160" sortable="true" dataindex="company">
              <commands>
                <ext:imagecommand commandname="Edit" icon="NoteEdit" text="Edit">
                  <tooltip text="Edit" />
                </ext:imagecommand>
              </commands>
            </ext:column>
            <ext:column header="Price" width="75" sortable="true" dataindex="price">
              <renderer format="UsMoney" />
            </ext:column>
          </columns>
        </columnmodel>
        <selectionmodel>
          <ext:rowselectionmodel runat="server" singleselect="true" />
        </selectionmodel>
      </ext:gridpanel>
      </form>
    </body>
    </html>

    cheers...
  2. #2

    RE: [CLOSED] Cell commands seem to be broken

    seems to be fixed in the latest update from SVN
    thanks.
  3. #3

    RE: [CLOSED] Cell commands seem to be broken

    sorry, maybe not fixed after all, i think i messed up my update from SVN and I kept the working revision of the file
  4. #4

    RE: [CLOSED] Cell commands seem to be broken

    Hi,

    Thanks for pointing out the bug. Fixed. Please update from SVN
  5. #5

    RE: [CLOSED] Cell commands seem to be broken

    thanks, working as expected now

Similar Threads

  1. [CLOSED] Problem with Direct event call on cell commands
    By feanor91 in forum 2.x Legacy Premium Help
    Replies: 8
    Last Post: Apr 26, 2012, 7:49 AM
  2. [CLOSED] Renderer on a ImageCommandColumn hides the commands
    By capecod in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Oct 20, 2010, 1:36 PM
  3. Image commands icons in IE6
    By snagy in forum 1.x Help
    Replies: 0
    Last Post: Mar 03, 2010, 2:08 PM
  4. Styling Grid Commands
    By Summ0ner in forum 1.x Help
    Replies: 1
    Last Post: Feb 02, 2010, 2:40 PM
  5. Set disable menu commands
    By DGil in forum 1.x Help
    Replies: 2
    Last Post: Jun 19, 2009, 8:13 AM

Posting Permissions