Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
99 views
HI All:

I have used a variation the Javascript code here to warn the user about moving to a new page if there is unsaved data on the current page.  The "set_cancel(true)" statement stops the grid from moving to another page.  However, the page number in the pager control advances to the new page (i.e., If I click the "next page" button but cancel the page, the grid stays on page one but the pager shows page 2).  Is there any way to block this behaviour (or failing that is there any way I can set the page number back to the original)?

Thanks for your help.

John
John
Top achievements
Rank 1
 answered on 21 Mar 2012
6 answers
159 views
Hi,

I am using  this grid  and want to allow user to edit few columns only say unitprice and instock. Is it possible? If yes then please help.

Thanks
Princy
Top achievements
Rank 2
 answered on 21 Mar 2012
3 answers
125 views
Hi, I am deciding whether to use the TreeViewCombobox method, as shown in the demos that come with telerik installation.

/TreeView/Examples/Functionality/TreeViewComboBox/DefaultCS.aspx

I need to ensure that the selection of treeeview item is possible through the keyboard. so far i have try navigating the treeview in the demo page but have not been successfull.

To expand the dropdown and make the treeview visible i use ALT + Down arrow key. This works. But then i cannot set focus to the treeview no matter what i do. Can anyone please tell me whether it is possible or any key combinations.

Thanks.

Amar
Dimitar Terziev
Telerik team
 answered on 21 Mar 2012
1 answer
98 views
Hi,

mac os x lion doesn't display horizontal scrollbar and that causes the columns to appear unaligned with the headers! I put here the example of the radscheduler but that happens pretty much everywhere. Has anyone noticed this already? 


regards
Kate
Telerik team
 answered on 21 Mar 2012
1 answer
181 views
Hi

I'm trying to implement client side hierarchial RadGrids as described here: 
http://blogs.telerik.com/vladimirenchev/posts/08-09-09/how-to-telerik-radgrid-master-detail-client-side-data-binding-using-linq-to-sql-and-webservice.aspx 

This works great for 2 levels of hierarchy (RadGrid1 has a NestedView in which RadGrid2 is placed).
But as soon as I try to implement third level of hierarchy and add a RadGrid3 inside of NestedView of RadGrid2 I get dramatically worse performance - about 2 minutes to get page rendered (against 7 seconds for page with 2 levels). Page contains just pure markup, without any data bound. 

Please advise, what can be done in order to workaround this performance issue.

These are the test samples I've made:
First one is a quite fast 2 levels case (contains just a label inside of RadGrid2 NestedView), second is a slow one with RadGrid3 instead of label:

Label:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="HierarchyTest-Label.aspx.cs" Inherits="HierarchyTest" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
</head>
<body>
<script type="text/javascript" language="javascript">
    RadGrid1_Command = function () {
        console.log('RadGrid1_Command');
    }
 
    RadGrid2_Command = function () {
        console.log('RadGrid2_Command');
    }
 
    RadGrid3_Command = function () {
        console.log('RadGrid3_Command');
    }
 
    RadGrid1_HierarchyExpanding = function (sender, args) {
        console.log('RadGrid1_HierarchyExpanding');
    }
 
    RadGrid2_HierarchyExpanding = function (sender, args) {
        console.log('RadGrid2_HierarchyExpanding');
    }
 
</script>
    <form id="form1" runat="server">
    <div>
    <asp:ScriptManager ID="ScriptManager1" runat="server" />
 
<telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" AllowSorting="False"
            GridLines="None" PageSize="10" Width="97%" Skin="Windows7">
            <ClientSettings AllowColumnHide="True" AllowRowHide="True" AllowColumnsReorder="True"
                ReorderColumnsOnClient="True">
                <Resizing EnableRealTimeResize="True" ResizeGridOnColumnResize="True" AllowColumnResize="true"
                    ClipCellContentOnResize="false"></Resizing>
                <ClientEvents OnCommand="RadGrid1_Command" OnHierarchyExpanding="RadGrid1_HierarchyExpanding" />
            </ClientSettings>
            <MasterTableView TableLayout="Fixed" AutoGenerateColumns="false" DataKeyNames="ServerId"
                ClientDataKeyNames="ServerId" HierarchyLoadMode="Client">
                <Columns>
                    <telerik:GridBoundColumn DataType="System.String" DataField="Server" HeaderText="Server"
                        UniqueName="Server" />
                    <telerik:GridBoundColumn DataType="System.String" DataField="Username" HeaderText="Username"
                        UniqueName="Username" />
                    <telerik:GridBoundColumn DataType="System.String" DataField="ServerId" UniqueName="ServerId"
                        Visible="false" />
                </Columns>
                <NestedViewTemplate>
                    <telerik:RadGrid runat="server" ID="RadGrid2" AllowPaging="False" AllowSorting="False"
                        GridLines="None" Width="97%" Skin="Windows7">
                        <ClientSettings AllowColumnHide="True" AllowRowHide="True" AllowColumnsReorder="True"
                            ReorderColumnsOnClient="True">
                            <Resizing EnableRealTimeResize="True" ResizeGridOnColumnResize="True" AllowColumnResize="true"
                                ClipCellContentOnResize="false"></Resizing>
                            <ClientEvents OnCommand="RadGrid2_Command" OnHierarchyExpanding="RadGrid2_HierarchyExpanding" />
                        </ClientSettings>
                        <MasterTableView TableLayout="Fixed" AutoGenerateColumns="false" ClientDataKeyNames="Id"
                            HierarchyLoadMode="Client">
                            <Columns>
                                <telerik:GridImageColumn DataType="System.String" HeaderText="St" DataImageUrlFormatString="Images\{0}.gif"
                                    DataImageUrlFields="Active" ImageWidth="16px" ImageHeight="16px" HeaderStyle-Width="26px" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="JobName" UniqueName="JobName"
                                    HeaderText="Job Name" HeaderStyle-Width="170px" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="Description" UniqueName="Description"
                                    HeaderText="Description" HeaderStyle-Width="250px" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="Result" UniqueName="Result"
                                    HeaderText="Result" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="NextRunStr" UniqueName="NextRunStr"
                                    HeaderText="Next run" HeaderStyle-Width="120px" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="DateCreatedStr" UniqueName="DateCreatedStr"
                                    HeaderText="Date created" HeaderStyle-Width="120px" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="Status" UniqueName="Status"
                                    HeaderText="Status" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="Id" UniqueName="ID"
                                    Visible="false" />
                            </Columns>
                            <NestedViewTemplate>
                                <asp:Label runat="server" Text="Level 3" />
                            </NestedViewTemplate>
                        </MasterTableView>
                    </telerik:RadGrid>
                </NestedViewTemplate>
            </MasterTableView>
        </telerik:RadGrid>   
    </div>
    </form>
</body>
</html>


RadGrid:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="HierarchyTest-Label.aspx.cs" Inherits="HierarchyTest" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head id="Head1" runat="server">
    <title></title>
</head>
<body>
<script type="text/javascript" language="javascript">
    RadGrid1_Command = function () {
        console.log('RadGrid1_Command');
    }
 
    RadGrid2_Command = function () {
        console.log('RadGrid2_Command');
    }
 
    RadGrid3_Command = function () {
        console.log('RadGrid3_Command');
    }
 
    RadGrid1_HierarchyExpanding = function (sender, args) {
        console.log('RadGrid1_HierarchyExpanding');
    }
 
    RadGrid2_HierarchyExpanding = function (sender, args) {
        console.log('RadGrid2_HierarchyExpanding');
    }
 
</script>
    <form id="form1" runat="server">
    <div>
    <asp:ScriptManager ID="ScriptManager1" runat="server" />
 
<telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" AllowSorting="False"
            GridLines="None" PageSize="10" Width="97%" Skin="Windows7">
            <ClientSettings AllowColumnHide="True" AllowRowHide="True" AllowColumnsReorder="True"
                ReorderColumnsOnClient="True">
                <Resizing EnableRealTimeResize="True" ResizeGridOnColumnResize="True" AllowColumnResize="true"
                    ClipCellContentOnResize="false"></Resizing>
                <ClientEvents OnCommand="RadGrid1_Command" OnHierarchyExpanding="RadGrid1_HierarchyExpanding" />
            </ClientSettings>
            <MasterTableView TableLayout="Fixed" AutoGenerateColumns="false" DataKeyNames="ServerId"
                ClientDataKeyNames="ServerId" HierarchyLoadMode="Client">
                <Columns>
                    <telerik:GridBoundColumn DataType="System.String" DataField="Server" HeaderText="Server"
                        UniqueName="Server" />
                    <telerik:GridBoundColumn DataType="System.String" DataField="Username" HeaderText="Username"
                        UniqueName="Username" />
                    <telerik:GridBoundColumn DataType="System.String" DataField="ServerId" UniqueName="ServerId"
                        Visible="false" />
                </Columns>
                <NestedViewTemplate>
                    <telerik:RadGrid runat="server" ID="RadGrid2" AllowPaging="False" AllowSorting="False"
                        GridLines="None" Width="97%" Skin="Windows7">
                        <ClientSettings AllowColumnHide="True" AllowRowHide="True" AllowColumnsReorder="True"
                            ReorderColumnsOnClient="True">
                            <Resizing EnableRealTimeResize="True" ResizeGridOnColumnResize="True" AllowColumnResize="true"
                                ClipCellContentOnResize="false"></Resizing>
                            <ClientEvents OnCommand="RadGrid2_Command" OnHierarchyExpanding="RadGrid2_HierarchyExpanding" />
                        </ClientSettings>
                        <MasterTableView TableLayout="Fixed" AutoGenerateColumns="false" ClientDataKeyNames="Id"
                            HierarchyLoadMode="Client">
                            <Columns>
                                <telerik:GridImageColumn DataType="System.String" HeaderText="St" DataImageUrlFormatString="Images\{0}.gif"
                                    DataImageUrlFields="Active" ImageWidth="16px" ImageHeight="16px" HeaderStyle-Width="26px" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="JobName" UniqueName="JobName"
                                    HeaderText="Job Name" HeaderStyle-Width="170px" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="Description" UniqueName="Description"
                                    HeaderText="Description" HeaderStyle-Width="250px" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="Result" UniqueName="Result"
                                    HeaderText="Result" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="NextRunStr" UniqueName="NextRunStr"
                                    HeaderText="Next run" HeaderStyle-Width="120px" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="DateCreatedStr" UniqueName="DateCreatedStr"
                                    HeaderText="Date created" HeaderStyle-Width="120px" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="Status" UniqueName="Status"
                                    HeaderText="Status" />
                                <telerik:GridBoundColumn DataType="System.String" DataField="Id" UniqueName="ID"
                                    Visible="false" />
                            </Columns>
                            <NestedViewTemplate>
                                <telerik:RadGrid runat="server" ID="RadGrid3" AllowPaging="False" AllowSorting="False"
                                    GridLines="None">
                                    <ClientSettings AllowColumnHide="False" AllowRowHide="False" AllowColumnsReorder="False"
                                        ReorderColumnsOnClient="False">
                                        <ClientEvents OnCommand="RadGrid3_Command" />
                                    </ClientSettings>
                                    <MasterTableView TableLayout="Fixed" AutoGenerateColumns="false" DataKeyNames="TaskId">
                                        <Columns>
                                            <telerik:GridImageColumn DataType="System.String" HeaderText="St" DataImageUrlFormatString="Images\{0}.gif"
                                                DataImageUrlFields="Active" ImageWidth="16px" ImageHeight="16px" HeaderStyle-Width="26px" />
                                            <telerik:GridBoundColumn DataType="System.String" DataField="TaskName" UniqueName="TaskName"
                                                HeaderText="Task Name" HeaderStyle-Width="170px" />
                                            <telerik:GridBoundColumn DataType="System.String" DataField="TaskId" UniqueName="TaskId"
                                                HeaderStyle-Width="170px" Visible="False" />
                                        </Columns>
                                    </MasterTableView>
                                </telerik:RadGrid>
                            </NestedViewTemplate>
                        </MasterTableView>
                    </telerik:RadGrid>
                </NestedViewTemplate>
            </MasterTableView>
        </telerik:RadGrid>   
    </div>
    </form>
</body>
</html>
Antonio Stoilkov
Telerik team
 answered on 21 Mar 2012
1 answer
167 views
Another developer also has the same requirement and his question is at: http://www.telerik.com/community/forums/aspnet-ajax/ajax/block-access-to-controls-in-the-page-on-ajax-postback.aspx. I wasn't sure whether adding a reply to his indicating my need to know the answer as well (since there's no way to "follow" or "subscribe" to a question unless you reply to it) or adding a new thread was appropriate. I chose to add a new thread.

Our Telerik version is 2012.1.215.40. I tried the following code, which I saw in a demo:

    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
        <script type="text/javascript">
            var currentLoadingPanel = null;
            var currentUpdatedControl = null;
            var idOfControl;

            function RequestStart(sender, args) {
                currentLoadingPanel = $find("<%= AjaxLoadingPanel.ClientID %>");
                // The control clicked is inside a RadAjaxPanel.
                // <telerik:RadAjaxPanel ID="AssessmentFilterAjaxPanel" runat="server" height="66px"
                // width="186px" HorizontalAlign="NotSet" LoadingPanelID="AjaxLoadingPanel" style="margin-right: 0px">
                 // <asp:PlaceHolder ID="AssessmentLinksPlaceholder" runat="server" EnableViewState="true"></asp:PlaceHolder>
                 // </telerik:RadAjaxPanel>
                 // The hyperlinks are created dynamically (it's faceted search) and the IDs start with "Assessment"
                idOfControl = args.get_eventTarget();

                if (idOfControl.indexOf("Assessment") > -1) {
                    // This control is inside a  RadAjaxPanel
                    // <telerik:RadAjaxPanel ID="PortfolioAjaxPanel" runat="server" Width="720px" HorizontalAlign="NotSet"           
                    // LoadingPanelID="AjaxLoadingPanel">
                    currentUpdatedControl = "<%= AssessmentInstanceRepeater.ClientID %>"; //
                }

                //show the loading panel over the updated control
                currentLoadingPanel.show(currentUpdatedControl);
            }

            function ResponseEnd() {
                //hide the loading panel and clean up the global variables
                if (currentLoadingPanel != null) {
                    currentLoadingPanel.hide(currentUpdatedControl);
                    currentUpdatedControl = null;
                    currentLoadingPanel = null;
                }
            }
        </script>
    </telerik:RadCodeBlock>   

The code inside the RadCodeBlock is not executed. I also refer to jQuery version 1.7.1 and use it successfully with $.noConflict();. This is the order of the scripts included (just in case this is the problem):

In the BODY:
    <telerik:RadScriptManager ID="ScriptManager1" runat="server" EnableTheming="True">
        <Scripts>
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
        </Scripts>
    </telerik:RadScriptManager>
    <script src="scripts/jquery-1.7.1.min.js" type="text/javascript"></script>
    <script src="scripts/jquery-ui-1.8.18.custom.min.js" type="text/javascript"></script>  

[The RadCodeBlock goes here]

And right before closing the BODY:
    <script language="javascript" type="text/javascript">
        $.noConflict();

      jQuery(document).ready(function($) {
           // My code handling modal pop-ups, inline editing, hiding and showing content. This works correctly.
        });
    </script>

The RadAjaxManager has the following AjaxSetting:

            <telerik:AjaxSetting AjaxControlID="AssessmentLinksPlaceholder">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="ClearAllLink" />
                    <telerik:AjaxUpdatedControl ControlID="AssessmentAppliedFilterPlaceholder" />
                    <telerik:AjaxUpdatedControl ControlID="AssessmentLinksPlaceholder" />
                    <telerik:AjaxUpdatedControl ControlID="StatusLinksPlaceholder" LoadingPanelID="AjaxLoadingPanel" />
                    <telerik:AjaxUpdatedControl ControlID="AssessmentInstanceRepeater" LoadingPanelID="AjaxLoadingPanel" />
                </UpdatedControls>
            </telerik:AjaxSetting>

AJAX execution works correctly. The only problem I have to solve is how to disable or to block or to show the loading panel the other panels.

A reply to our problem is appreciated.

Elsa
Antonio Stoilkov
Telerik team
 answered on 21 Mar 2012
2 answers
878 views
I have created the simplest form I can to test setting a RadTextBox using javascript.

aspx:
<head runat="server">
<title>Textbox Page Load Testing</title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager runat="server" ID="SCRM">
</asp:ScriptManager>
<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All"
EnableRoundedCorners="True" />
<div>
<telerik:RadTextBox ID="txtTest" runat="server" Skin="" TextMode="SingleLine">
</telerik:RadTextBox>
</div>
<telerik:RadCodeBlock runat="server" ID="RadScriptBlock1">
<script type="text/javascript">
function setVal(val) {
$find("<%=txtTest.ClientID %>").set_value(val);
}
</script>
</telerik:RadCodeBlock>
</form>
</body>
</html>

VB:
Partial Class Default4
    Inherits System.Web.UI.Page
 
    Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
        ClientScript.RegisterStartupScript(Me.GetType(), "Pass", "setVal('TestValue');", True)
    End Sub
End Class

I get the following error:
Microsoft JScript runtime error: Unable to get value of the property 'set_value': object is null or undefined

Yes I have to do it on page load.
Yes I have to do this using javascript.

SSirica
Top achievements
Rank 3
Iron
Iron
Iron
 answered on 21 Mar 2012
1 answer
189 views
Hi,

we are facing formatting issues while exporting the GRID to PDF.

some of the columns in the grid are not shown in the PDF. This problem exist if we have more than 3 columns in the grid.

Export to Excel & Export to Word are working properly.

Below is the code we are using. 

In .aspx

<telerik:RadGrid ID="rdgRoles" runat="server" DataSourceID="dsRoles"  OnItemCommand="RdgRolesItemCommand" Width="990px"
 ValidationSettings-ValidationGroup="valgrpSettings">
<MasterTableView AutoGenerateColumns="false" DataKeyNames="RoleId" CommandItemDisplay="Top"
CommandItemSettings-AddNewRecordImageUrl="../Images/App/addRole.png" CommandItemSettings-AddNewRecordText=""
 PagerStyle-AlwaysVisible="True" AllowPaging="True" AllowSorting="true">
 <CommandItemSettings ShowExportToExcelButton="True" ShowExportToWordButton="True"
 ShowExportToPdfButton="True" ShowRefreshButton="False"></CommandItemSettings>
 <Columns>
<telerik:GridTemplateColumn UniqueName="template"  HeaderStyle-Width="50px" ItemStyle-Width="50px">
<ItemTemplate>
<asp:ImageButton ID="imgEdit" runat="server" ToolTip="Edit" CommandName="EditRole"
     ImageUrl="~/Images/App/icon_edit.gif" />
<asp:ImageButton ID="imgbtnDelete" ToolTip="Delete" runat="server" CommandName="Delete"
     ImageUrl="~/Images/App/icon_delete.gif" OnClientClick="return confirm('Are you sure want to Delete this Role?');" />
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Role" HeaderStyle-Width="200px" ItemStyle-Width="200px" SortExpression="Role" >
<ItemTemplate>
<span class="wordwrapcontentnormal" style="width:200px;">
<asp:Label ID="lblRole" runat="server" Text='<%# Bind("Role") %>'></asp:Label>
</span>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn HeaderText="Description" DataField="Description" MaxLength="500"  HeaderStyle-Width="300px" ItemStyle-Width="300px">
</telerik:GridBoundColumn>
<telerik:GridTemplateColumn HeaderText="Permission Level"  HeaderStyle-Width="200px" ItemStyle-Width="200px" SortExpression="PermissionLevel">
<ItemTemplate>
<span class="wordwrapcontentnormal" style="width:200px;">
<asp:Label ID="lblPermission" runat="server" Text='<%# Eval("PermissionLevel") %>'></asp:Label>
</span>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridCheckBoxColumn UniqueName="Active" HeaderText="Active" DataField="Active"  HeaderStyle-Width="50px" ItemStyle-Width="50px">
</telerik:GridCheckBoxColumn>
<telerik:GridTemplateColumn UniqueName="ActiveString" HeaderText="Active" HeaderStyle-Width="50px" ItemStyle-Width="50px"  Visible="false" ItemStyle-VerticalAlign="Top">
<ItemTemplate>
<%# Eval("ActiveString") %>                                                                     
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
</MasterTableView>
 </telerik:RadGrid>

In Code behind

protected void RdgRolesItemCommand(object source, GridCommandEventArgs e)
        {
            try
            {
                if (e.CommandName == RadGrid.ExportToExcelCommandName ||
                e.CommandName == RadGrid.ExportToWordCommandName ||
                e.CommandName == RadGrid.ExportToCsvCommandName ||
                e.CommandName == RadGrid.ExportToPdfCommandName)
                {


                    rdgRoles.ExportSettings.ExportOnlyData = true;
                    rdgRoles.ExportSettings.IgnorePaging = true;
                    rdgRoles.ExportSettings.OpenInNewWindow = true;
                    rdgRoles.ExportSettings.FileName = GlobalHelper.ExportFileName(Resources.Messages.RoleExportFileName);


                    GlobalHelper.IsExport = true;
                    rdgRoles.MasterTableView.GetColumn("template").Visible = false;
                    rdgRoles.MasterTableView.GetColumn("Active").Visible = false;
                    rdgRoles.MasterTableView.GetColumn("ActiveString").Visible = true;
                }


                switch (e.CommandName)
                {
                    case RadGrid.ExportToExcelCommandName:
                        rdgRoles.MasterTableView.ExportToExcel();


                        break;


                    case RadGrid.ExportToCsvCommandName:
                        rdgRoles.ExportSettings.ExportOnlyData = false;
                        rdgRoles.MasterTableView.ExportToCSV();
                        break;


                    case RadGrid.ExportToPdfCommandName:
                        rdgRoles.MasterTableView.ExportToPdf();
                        break;


                    case RadGrid.ExportToWordCommandName:
                        rdgRoles.MasterTableView.ExportToWord();
                        break;
                }

            }
            catch (Exception ex)
            {
                
            }
        }
        
Can you please provide solution for this?

Thanks in advance.  


Princy
Top achievements
Rank 2
 answered on 21 Mar 2012
1 answer
102 views
Hi, I'm looking an either client-side or server-side to either append '*' to the Folder Name or switch the icon.  Right now, we're only allowing members to download the files and we keep that the download status.

Thanks
Vinh Vu
Dobromir
Telerik team
 answered on 21 Mar 2012
1 answer
95 views
Can you send me the sample code to describe how to use raddatapager control with radgridview....Your demo site doesnot explain the pager control with gridview.
Thanks
Princy
Top achievements
Rank 2
 answered on 21 Mar 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?