Hello All,
I've faced to problem, that in Q3 2010 for AJAX when I use programmatically created RadGrid, header text is changed against SQL datasource - automatically inserted spaces in string (e.g. "Order ID" instead of "OrderID", "NBREQ_ TCP" instead of "NBREQ_TCP").
Is there any way to avoid header text change in dynamic grid without static columns declaration?
This code is used to fill Grig (DGrid) with data from DataSet (dst)
Thanks,
MexaHukyc
.
I've faced to problem, that in Q3 2010 for AJAX when I use programmatically created RadGrid, header text is changed against SQL datasource - automatically inserted spaces in string (e.g. "Order ID" instead of "OrderID", "NBREQ_ TCP" instead of "NBREQ_TCP").
Is there any way to avoid header text change in dynamic grid without static columns declaration?
This code is used to fill Grig (DGrid) with data from DataSet (dst)
dtv = dst.Tables(
"SourceTable"
).DefaultView()
dtv.Sort = sortstring
DGrid.DataSource = dtv_stat
DGrid.DataBind()Thanks,
MexaHukyc
.