Now maybe I am doing something wrong but the above steps are very redundant and slow us down.
I must be missing something..
When letting rad replace the ajax script manager, the page no longer loads as there is a missing "Sys" object?
The controls work with Ajax script manger fine, but Radscriptmanager breaks the code?..
Thanks
protected
void rgvReport_ColumnCreated(object source, GridColumnCreatedEventArgs e)
{
if (e.Column is GridBoundColumn && !(e.Column.IsBoundToFieldName("Project/Date")))
{
e.Column.HeaderStyle.HorizontalAlign =
HorizontalAlign.Center ;
e.Column.ItemStyle.HorizontalAlign =
HorizontalAlign.Right;
e.Column.HeaderStyle.Width = 55;
e.Column.ItemStyle.Width = 55;
}
else
{
e.Column.HeaderStyle.Width = 70;
e.Column.ItemStyle.Width = 70;
}
}
But the header width is different from the Item width.
Please could anybody tell me how to rectify this problem.
Thank you
-Anto