2015-05-19 14:45:47 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using System.Web.UI;
|
|
|
|
|
using System.Web.UI.WebControls;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace FineUI.Examples.grid
|
|
|
|
|
{
|
|
|
|
|
public partial class grid_groupheader_hidden : PageBase
|
|
|
|
|
{
|
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (!IsPostBack)
|
|
|
|
|
{
|
|
|
|
|
BindGrid();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region BindGrid
|
|
|
|
|
|
|
|
|
|
private void BindGrid()
|
|
|
|
|
{
|
|
|
|
|
string sortField = Grid1.SortField;
|
|
|
|
|
string sortDirection = Grid1.SortDirection;
|
|
|
|
|
|
|
|
|
|
DataTable table = GetDataTable();
|
|
|
|
|
|
|
|
|
|
DataView view1 = table.DefaultView;
|
|
|
|
|
view1.Sort = String.Format("{0} {1}", sortField, sortDirection);
|
|
|
|
|
|
|
|
|
|
Grid1.DataSource = view1;
|
|
|
|
|
Grid1.DataBind();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2016-01-10 01:19:30 -05:00
|
|
|
|
protected DataTable GetDataTable()
|
2015-05-19 14:45:47 +08:00
|
|
|
|
{
|
|
|
|
|
DataTable table = new DataTable();
|
|
|
|
|
table.Columns.Add(new DataColumn("Guid", typeof(Guid)));
|
|
|
|
|
table.Columns.Add(new DataColumn("Year", typeof(int)));
|
|
|
|
|
table.Columns.Add(new DataColumn("HZData1", typeof(int)));
|
|
|
|
|
table.Columns.Add(new DataColumn("HZData2", typeof(int)));
|
|
|
|
|
table.Columns.Add(new DataColumn("HLData1", typeof(int)));
|
|
|
|
|
table.Columns.Add(new DataColumn("HLData2", typeof(int)));
|
|
|
|
|
table.Columns.Add(new DataColumn("AHData1", typeof(int)));
|
|
|
|
|
table.Columns.Add(new DataColumn("AHData2", typeof(int)));
|
|
|
|
|
table.Columns.Add(new DataColumn("LogTime", typeof(DateTime)));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DataRow row;
|
|
|
|
|
|
|
|
|
|
Random rd = new Random();
|
|
|
|
|
for (int i = 0; i < 10; i++)
|
|
|
|
|
{
|
|
|
|
|
int year = 2000 + i;
|
|
|
|
|
|
|
|
|
|
row = table.NewRow();
|
|
|
|
|
row[0] = Guid.NewGuid();
|
|
|
|
|
row[1] = year;
|
|
|
|
|
row[2] = rd.Next(1000, 9999);
|
|
|
|
|
row[3] = rd.Next(1000, 9999);
|
|
|
|
|
row[4] = rd.Next(1000, 9999);
|
|
|
|
|
row[5] = rd.Next(1000, 9999);
|
|
|
|
|
row[6] = rd.Next(1000, 9999);
|
|
|
|
|
row[7] = rd.Next(1000, 9999);
|
|
|
|
|
row[8] = DateTime.Parse(String.Format("{0}-09-01", year));
|
|
|
|
|
|
|
|
|
|
table.Rows.Add(row);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return table;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Events
|
|
|
|
|
|
2016-01-10 01:19:30 -05:00
|
|
|
|
protected void Grid1_Sort(object sender, GridSortEventArgs e)
|
2015-05-19 14:45:47 +08:00
|
|
|
|
{
|
|
|
|
|
Grid1.SortDirection = e.SortDirection;
|
|
|
|
|
Grid1.SortField = e.SortField;
|
|
|
|
|
BindGrid();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|