Radupload Ajax callback error.source url returned error :12031
unknown
.../../Telerik.RadUploadProgressHandler.ashx
Did you register the RadUploadProgressHandler in web.config?
Can someone please help me..I am using asp.net 3.5
on every postbacks the width of the columns is shrinking.
First time by 40%, then 30% and so on (I did not check up to what size).
That is, in a few postbacks, the grid becomes very very small.
If I remove from the setting:
| RadGrid1.ClientSettings.Resizing.AllowColumnResize = true |
then no shrinking on postbacks as well as no resizing.
What is wrong with version 2009.2.826 ?
Ildar

function Insert()
{
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.fireCommand(
"Insert","");
}
<radG:RadGrid ID="RadSummary" runat="server" AllowSorting="True" AutoGenerateColumns="false">
<MasterTableView AutoGenerateColumns="false" AllowNaturalSort="False"></MasterTableView>
<ClientSettings AllowColumnsReorder="true" ApplyStylesOnClient="False" EnablePostBackOnRowClick="false">
<Selecting AllowRowSelect="false" />
</ClientSettings>
</radG:RadGrid>
GridBoundColumn
boundColumn = new GridBoundColumn();
RadSummary.MasterTableView.Columns.Add(boundColumn);
boundColumn.HeaderText = "Column 1;
RadSummary.DataBind();