Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
90
Wingrid colspan??
posted

ultraWebGrid Source

        public void SetNotData(Infragistics.Win.UltraWinGrid.UltraGrid e)
        {
            if (e.Rows.Count == 0)
            {
                e.Rows.Add();
                e.Bands[0].Columns[0].CellStyle.HorizontalAlign = HorizontalAlign.Center;
                e.Rows[0].Cells[0].Style.BackColor = Color.White;
                e.Rows[0].Cells[0].Column.Type = ColumnType.NotSet;
                e.Rows[0].Cells[0].ColSpan = e.Columns.Count;
                e.Rows[0].Cells[0].Value = "No Data!";
            }
        }

 

I want Converting WinGrid...

Help Please..