Query 1: I am using Hierarchal RadGrid(version: Telerik 2008). The Skin used is “Office2007”. The border line is not displaying properly for the nested rows(please refer the snapshot1) and also the grid background is not shown properly when we select even rows (please refer the snapshot2). Please give us the solution for this.
Query 2: For the RadGrid, Paging and Sorting is set to true. Suppose if we are in Page 3 and click on column to sort, Sorting will happen but it will remain in the same page(i.e. Page 3). But I want the grid to display Page 1 when sorting happens. Please let me know how to achieve this.
Thanks,
Nagendra

Hi,
i want to prevent file deletion on click of "Cancel" from confirmation alert
<telerik:RadAsyncUpload ID="radUpload" runat="server" OnClientValidationFailed="validationFailed" TemporaryFileExpiration="5" OnClientFileSelected="fileSelected" OnClientDeleting="fileDelete" OnClientFileUploaded ="fileUploaded">
</telerik:RadAsyncUpload>
function fileDelete(sender, args) {
if (confirm("Are you sure to Delete the record?")) {
args._cancel = false;
}
else {
args.set_cancel(true);
//args._cancel = true;
//sender._cancelEvent();
}
}
How to prevent file deletion on click of "Cancel" button.
On click of "Cancel" it is not not deleting from row, but actually file is deleted from control. So on click of Cancel button i want to prevent the file delete from control also.
Thanks,
Chandra.T
<telerik:RadFileExplorer runat="server" ID="FileExplorer1" Width="500px" Height="500px" OnClientItemSelected="OnClientItemSelected" > <Configuration ViewPaths="~/Media/Cnsrts/" MaxUploadFileSize="200000000" UploadPaths="~/Media/Cnsrts/" DeletePaths="~/Media/Cnsrts/" /> </telerik:RadFileExplorer>
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31BF3856AD364E35" culture="neutral" /> <bindingRedirect oldVersion="1.0.61025.0" newVersion="3.5.0.0"/> </dependentAssembly> </assemblyBinding> </runtime><telerik:GridHyperLinkColumn DataNavigateUrlFields="Email1" UniqueName="Email1"
DataNavigateUrlFormatString="mailto:{0}" DataTextField="Name" HeaderText="Reviewer" SortExpression="Email1" ShowFilterIcon="false"
ShowSortIcon="false" AutoPostBackOnFilter="true" />System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.Data.SqlClient.SqlException: Invalid column name 'Name'.
<telerik:GridBoundColumn HeaderText="Column1" SortExpression="Column1" DataField="Column1" UniqueName="Column1" DataType="System.Decimal" DataFormatString="{0:$###,##0.00}" Aggregate="Sum" ItemStyle-Wrap="true" HeaderStyle-Wrap="false" FooterText="Total Column1: "> <ItemStyle HorizontalAlign="Right" Wrap="True" /> <FooterStyle HorizontalAlign="Right" Wrap="True" /> </telerik:GridBoundColumn>