文章分类 -  Infragistics NetAdvantage

UltraWebGrid模板列控件的操作
摘要:Infragistics.WebUI.UltraWebGrid.TemplatedColumn tc =(Infragistics.WebUI.UltraWebGrid.TemplatedColumn)UltraWebGrid1.Rows[行索引号].Cells.FromKey("模板列key").Column; Infragistics.WebUI.UltraWebGrid.CellItem ci = (Infragistics.WebUI.UltraWebGrid.CellItem)tc.CellItems[行索引号]; 控件类名 _control = (控件类名)ci 阅读全文
posted @ 2012-08-02 15:34 小角色 阅读(163) 评论(0) 推荐(0)
Infragistics NetAdvantage中window ultraGrid三成结构的使用
摘要:DALService.DALServiceClient dal = new TMS.WinUI.DALService.DALServiceClient(); DataSet ds = new DataSet(); DataTable dt = dal.GetReportTrace(itemID, stateID, departID, dtpBegin.Value.AddHours(-24), dtpEnd.Value.AddSeconds(1), proposedFlag, dtpPlanBegin.Value, dtpPlanEnd.Value, ... 阅读全文
posted @ 2012-05-31 12:35 小角色 阅读(454) 评论(0) 推荐(0)
Winform UltraGrid控件取消自动绑定显示
摘要:ultraGrid1.DisplayLayout.NewColumnLoadStyle = Infragistics.Win.UltraWinGrid.NewColumnLoadStyle.Hide;DataTable dt = new DataTable (); dt.Columns .Add ("UserName"); DataRow dr =dt.NewRow (); dr[0]= "TEST USer"; dt.Rows.Add (dr); ultraGrid1.DisplayLayout.Bands[0].Columns[0].Header.C 阅读全文
posted @ 2012-05-24 14:09 小角色 阅读(279) 评论(0) 推荐(0)