using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Web.UI; //[assembly: WebResource("Ext.Net.UX.Plugins.GridSummaryRow.resources.GridSummaryRow.js", "text/javascript")] namespace Ext.Net { [ToolboxData("<{0}:GridSummaryRow runat=\"server\" />")] [Description("GridSummaryRow plugin used to display summary at the end of grid.")] public partial class GridSummaryRow : Plugin { protected override List Resources { get { List baseList = base.Resources; baseList.Capacity += 1; baseList.Add(new ClientScriptItem(typeof(GridSummaryRow), "Ext.Net.Build.Ext.Net.ux.plugins.gridsummaryrow.gridsummaryrow.js", "/ux/plugins/gridsummaryrow/gridsummaryrow.js")); return baseList; } } /// /// /// [Category("0. About")] [Description("")] public override string InstanceOf { get { return "Ext.ux.GridTotals"; } } } }