Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
132 views
Hello all,
I have done an example like the demo Grid / MS Excel/MS Word/CSV.
I only choose the checkbox of Export only data ,it's OK.
I choose both of checkboxes of Export only data and Ignore paging (exports all pages)  ,it's OK.
I choose none of the checkbox ,the word only one column of PermissionId and fulled the whole word,the permissionid'data all appeared and then the current page's permissionid'data ; the CSV's columns all fulled in the first column; the Excel has all the data (not one to one)and then the current page.
I only choose the Ignore paging (exports all pages) ,like i choose none,but the data more.


all of this ,the export to ExcelML doesn't relize. when i debug
if (e.Row.Cells.Count > 0)  
                {  
                  if (e.Row.Cells[0] != null && ((string)e.Row.Cells[0].Data.DataItem).Contains("U"))  
                    {  
                        e.Row.Cells[0].StyleValue = "MyCustomStyle";  
                    }                      
                } 

it can't come into it.

here is my code:
<head runat="server">  
 
    <title>Untitled Page</title> 
</head> 
<body > 
    <form id="form1" runat="server" > 
            <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest">  
                <AjaxSettings> 
                    <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">  
                        <UpdatedControls> 
                            <telerik:AjaxUpdatedControl ControlID="RadGrid1" /> 
                        </UpdatedControls> 
                    </telerik:AjaxSetting>   
                    <telerik:AjaxSetting AjaxControlID="RadGrid1">  
                        <UpdatedControls> 
                            <telerik:AjaxUpdatedControl ControlID="RadGrid1" /> 
                        </UpdatedControls> 
                    </telerik:AjaxSetting>   
                </AjaxSettings> 
            </telerik:RadAjaxManager> 
    <asp:ScriptManager ID="ScriptManager" runat="server" /> 
     
            <asp:CheckBox ID="CheckBox1" Text="Export only data" runat="server"/>  
            <br /> 
            <asp:CheckBox ID="CheckBox2" Text="Ignore paging (exports all pages)" runat="server"/>  
            <br /> 
            <br />   
             
    <div> 
    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">  
            <script type="text/javascript">  
 
              
            function ShowEditForm(id, rowIndex)  
            {  
                var grid = $find("<%= RadGrid1.ClientID %>");  
                  
                var rowControl = grid.get_masterTableView().get_dataItems()[rowIndex].get_element();   
                grid.get_masterTableView().selectItem(rowControl, true);  
                          
                window.radopen("WebForm2.aspx?PermissionsId=" + id, "UserListDialog");  
                return false;   
            }  
            function ShowInsertForm()  
            {  
               window.radopen("WebForm2.aspx", "UserListDialog");  
               return false;  
            }  
            function refreshGrid(arg)  
            {  
             if(!arg)  
             {  
             $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("Rebind");               
                }  
                else  
                {  
             $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest("RebindAndNavigate");               
                }  
            }  
            function RowDblClick(sender, eventArgs)  
            {  
             window.radopen("WebForm2.aspx?PermissionsId=" + eventArgs.getDataKeyValue("PermissionsId"), "UserListDialog");  
            }  
            </script> 
        </telerik:RadCodeBlock>   
          
     
    <asp:Button ID="Button1" runat="server" Text="Export to Excel" Width="150px"   
            onclick="Button1_Click"  /> 
    <asp:Button ID="Button2"  Width="150px" Text="Export to Word"  runat="server"   
            onclick="Button2_Click"/>  
    <asp:Button ID="Button3"  Width="150px" Text="Export to CSV" runat="server"   
            onclick="Button3_Click"/>  
    <asp:Button ID="Button4"  Width="150px" Text="Export to ExcelML" runat="server"   
            onclick="Button4_Click"/>  
     
        <telerik:RadGrid   
              
                ID="RadGrid1"   
                runat="server"   
                AllowPaging="True" AllowFilteringByColumn="True" 
                Width="97%"   
               OnNeedDataSource="RadGrid1_NeedDataSource"   
               OnRowDataBound="GridView1_RowDataBound" 
               OnItemCreated="RadGrid1_ItemCreated"              
              OnExcelMLExportStylesCreated="RadGrid1_ExcelMLExportStylesCreated" 
          
            GridLines="None">  
            <ExportSettings IgnorePaging="False" Pdf-AllowAdd="False" Pdf-AllowPrinting="True" ExportOnlyData="False"  > 
            <Excel Format="Html"  /> 
              
      
            <Csv ColumnDelimiter="Colon" RowDelimiter="NewLine"  /> 
             <Pdf PageHeight="297mm" PageWidth="210mm" PageTitle="Permissions menu"  /> 
            </ExportSettings> 
                <PagerStyle Mode="NumericPages" /> 
                <MasterTableView   
                    AutoGenerateColumns="False"   
                    DataKeyNames="PermissionsId"   
                    ClientDataKeyNames="PermissionsId" 
                    Width="100%" 
                    CommandItemDisplay="Top"   
                    PageSize="5">  
                    <Columns> 
                        <telerik:GridBoundColumn   
                            DataField="PermissionsId"   
                            HeaderText="PermissionsId" 
                            ReadOnly="True"   
                            SortExpression="PermissionsId"   
                            UniqueName="PermissionsId" > 
                         
                        <FilterTemplate> 
                            <telerik:RadComboBox   
                            ID="RadComboBox1" DataTextField="PermissionsId" DataValueField="PermissionsId" DataSource="<%# DataBindPermissionsId() %>" 
                                AppendDataBoundItems="true" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("PermissionsId").CurrentFilterValue %>' 
                                runat="server" OnClientSelectedIndexChanged="PermissionsIdIndexChanged">  
                                <Items> 
                                    <telerik:RadComboBoxItem Text="All" /> 
                                </Items> 
                            </telerik:RadComboBox> 
                               <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">  
                                <script type="text/javascript">  
                                    function PermissionsIdIndexChanged(sender,args) {  
                       
                                        var tableView=$find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");  
                                        tableView.filter("PermissionsId",args.get_item().get_value(),"EqualTo");  
                                    }  
                                </script> 
                            </telerik:RadScriptBlock> 
                        </FilterTemplate> 
                         </telerik:GridBoundColumn> 
                          
                        <telerik:GridBoundColumn   
                            DataField="PermissionsName"   
                            HeaderText="PermissionsName"   
                            SortExpression="PermissionsName" 
                            UniqueName="PermissionsName">  
                       <FilterTemplate> 
                            <telerik:RadComboBox   
                            ID="RadComboBox2" DataTextField="PermissionsName" DataValueField="PermissionsName" DataSource="<%# DataBindPermissionsName() %>" 
                                AppendDataBoundItems="true" SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("PermissionsName").CurrentFilterValue %>' 
                                runat="server" OnClientSelectedIndexChanged="PermissionsNameIndexChanged" EnableLoadOnDemand="True" Filter="StartsWith">  
                                <Items> 
                                    <telerik:RadComboBoxItem Text="All" /> 
                                </Items> 
                            </telerik:RadComboBox> 
                               <telerik:RadScriptBlock ID="RadScriptBlock2" runat="server">  
                                <script type="text/javascript">  
                                    function PermissionsNameIndexChanged(sender,args) {  
                                        var tableView=$find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");  
                                        tableView.filter("PermissionsName",args.get_item().get_value(),"EqualTo");  
                                    }  
                                </script> 
                            </telerik:RadScriptBlock> 
                        </FilterTemplate>       
                              
                              
                        </telerik:GridBoundColumn>   
                            
                 <telerik:GridBoundColumn   
                         DataField="PermissionsNo" HeaderText="PermissionsNo"   
                            SortExpression="PermissionsNo"    UniqueName="PermissionsNo" > 
                             <FilterTemplate> 
                            <telerik:RadComboBox ID="RadComboBox3" DataTextField="PermissionsNo" DataValueField="PermissionsNo" DataSource="<%# DataBindPermissionsNo() %>" 
                                AppendDataBoundItems="true"  SelectedValue='<%# ((GridItem)Container).OwnerTableView.GetColumn("PermissionsNo").CurrentFilterValue %>' 
                                runat="server" OnClientSelectedIndexChanged="PermissionsNoIndexChanged">  
                                <Items> 
                                    <telerik:RadComboBoxItem Text="All" /> 
                                </Items> 
                            </telerik:RadComboBox> 
                            <telerik:RadScriptBlock ID="RadScriptBlock3" runat="server">  
                                <script type="text/javascript">  
                                    function PermissionsNoIndexChanged(sender,args) {  
                                        var tableView=$find("<%# ((GridItem)Container).OwnerTableView.ClientID %>");  
                                        tableView.filter("PermissionsNo",args.get_item().get_value(),"EqualTo");  
                                    }  
                                </script> 
                            </telerik:RadScriptBlock> 
                        </FilterTemplate>           
                           <%--   <ItemTemplate>     
                             <img src='Image/<%# Eval("PermissionsNo") %>.gif' alt="" style="vertical-align:middle;margin-right:7px;"/>  
                              </ItemTemplate>     --%>              
                    </telerik:GridBoundColumn>   
 
                      
       <%--   <telerik:GridDateTimeColumn   
                   FilterControlWidth="120px" DataField="CreateDate" HeaderText="CreateDate" SortExpression="CreateDate"   
                        UniqueName="CreateDate" PickerType="DatePicker" DataFormatString="{0:D}" CurrentFilterFunction="Contains">  
                        <HeaderStyle Width="160px" /> 
                    </telerik:GridDateTimeColumn>--%> 
                                         
               <telerik:GridTemplateColumn   
                            UniqueName="TemplateEditColumn">  
                             <ItemTemplate>                                                              
                                <asp:Image ID="EditLink" ImageUrl="../Images/Write2.gif"  runat="server" /> 
                                  <%--  <img src='Image/<%# Eval("PermissionsNo") %>.gif' alt="" style="vertical-align:middle;margin-right:7px;"/><%# Eval("PermissionsNo")%>  --%>     
                  </ItemTemplate> 
                        </telerik:GridTemplateColumn> 
                  
                    </Columns> 
                    <CommandItemTemplate> 
                        <href="#" onclick="return ShowInsertForm();">Add New Record</a> 
                    </CommandItemTemplate> 
                </MasterTableView> 
                <ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True">  
                    <Selecting AllowRowSelect="true" /> 
                    <ClientEvents OnRowDblClick="RowDblClick" /> 
                </ClientSettings> 
            </telerik:RadGrid> 
                           
            <telerik:RadWindowManager ID="RadWindowManager1" runat="server">  
                <Windows> 
                    <telerik:RadWindow ID="UserListDialog" runat="server" Title="Editing record" Height="400px" 
                        Width="300px" Left="150px" ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true" /> 
                </Windows> 
            </telerik:RadWindowManager> 
 
    </div> 
    </form> 
</body> 
and .cs
   
    public partial class WebForm1 : System.Web.UI.Page  
    {  
    
    PermissionsService pre = new PermissionsService();  
        protected void Page_Load(object sender, EventArgs e)  
        {  
            
        }  
 
        protected TList<Permissions> DataBindPermissionsId()  
        {  
            return pre.GetAll();  
        }  
 
        protected TList<Permissions> DataBindPermissionsName()  
        {  
            return pre.GetAll();  
        }  
 
        protected TList<Permissions> DataBindPermissionsNo()  
        {  
            return pre.GetAll();  
        }  
 
 
        protected void RadGrid1_NeedDataSource(object source, GridNeedDataSourceEventArgs e)  
        {  
            Siemens.BPM.Profile.Entities.TList<Permissions> PerEntities = new TList<Permissions>();  
           PerEntities = pre.GetAll();              
           this.RadGrid1.DataSource = pre.GetAll();  
             
        }       
 
   /*     protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e)  
        {  
            if (e.Item is GridDataItem)  
            {  
                Image editLink = (Image)e.Item.FindControl("EditLink");  
                editLink.Attributes["href"] = "#";  
                editLink.Attributes["onclick"] = String.Format("return ShowEditForm('{0}','{1}');", e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["PermissionsId"], e.Item.ItemIndex);  
            }  
        }  
    */  
 
        protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e)  
        {  
            if (e.Argument == "Rebind")  
            {  
 
                RadGrid1.MasterTableView.SortExpressions.Clear();  
                RadGrid1.MasterTableView.GroupByExpressions.Clear();  
                RadGrid1.Rebind();  
            }  
            else if (e.Argument == "RebindAndNavigate")  
            {  
                RadGrid1.MasterTableView.SortExpressions.Clear();  
                RadGrid1.MasterTableView.GroupByExpressions.Clear();  
                RadGrid1RadGrid1.MasterTableView.CurrentPageIndex = RadGrid1.MasterTableView.PageCount - 1;  
                RadGrid1.Rebind();  
            }  
        }  
 
        protected void Button1_Click(object sender, EventArgs e)  
        {  
            ConfigureExport();  
            RadGrid1.MasterTableView.ExportToExcel();  
        }  
 
        protected void Button2_Click(object sender, EventArgs e)  
        {  
            ConfigureExport();  
     
            RadGrid1.MasterTableView.ExportToWord();  
           
 
        }  
 
        protected void Button3_Click(object sender, EventArgs e)  
        {  
            ConfigureExport();  
              
            RadGrid1.MasterTableView.ExportToCSV();  
        }  
 
        protected void Button4_Click(object sender, EventArgs e)  
        {  
          ConfigureExport();  
            RadGrid1.ExportSettings.Excel.Format = Telerik.Web.UI.GridExcelExportFormat.ExcelML;  
            CheckBox1.Checked = true;  
            RadGrid1.ExportSettings.ExportOnlyData = true;  
            RadGrid1.MasterTableView.ExportToExcel();  
         
        }  
        bool isPdfExport = false;  
 
   /*   protected void RadGrid1_ExcelMLExportRowCreated(object source,Telerik.Web.UI.GridExcelBuilder.GridExportExcelMLRowCreatedArgs e)  
        {  
           if (e.RowType ==Telerik.Web.UI.GridExcelBuilder.GridExportExcelMLRowType.DataRow)  
            {  
                if (e.Row.Cells.Count > 0)  
                {  
                     
                    if (e.Row.Cells[0] != null && ((string)e.Row.Cells[0].Data.DataItem).Contains("U"))  
                    {  
                        e.Row.Cells[0].StyleValue = "MyCustomStyle";  
 
                    }  
                       
                }  
            }  
        }  
    */  
             
        protected void RadGrid1_ExcelMLExportStylesCreated(object source,Telerik.Web.UI.GridExcelBuilder.GridExportExcelMLStyleCreatedArgs e)  
        {  
            foreach (Telerik.Web.UI.GridExcelBuilder.StyleElement style in e.Styles)  
            {  
                if (style.Id  == "headerStyle")  
                {  
                    style.FontStyle.Bold = true;  
                    style.FontStyle.Color = System.Drawing.Color.Gainsboro;  
                    style.InteriorStyle.Color = System.Drawing.Color.Wheat;  
                    style.InteriorStyle.Pattern =Telerik.Web.UI.GridExcelBuilder.InteriorPatternType.Solid;  
                }  
                else if (style.Id == "itemStyle")  
                {  
                    style.InteriorStyle.Color = System.Drawing.Color.WhiteSmoke;  
                    style.InteriorStyle.Pattern =Telerik.Web.UI.GridExcelBuilder.InteriorPatternType.Solid;  
                }  
                else if (style.Id == "alternatingItemStyle")  
                {  
                    style.InteriorStyle.Color = System.Drawing.Color.LightGray;  
                    style.InteriorStyle.Pattern =Telerik.Web.UI.GridExcelBuilder.InteriorPatternType.Solid;  
                }  
            }  
 
            Telerik.Web.UI.GridExcelBuilder.StyleElement myStyle = new Telerik.Web.UI.GridExcelBuilder.StyleElement("MyCustomStyle");  
            myStyle.FontStyle.Bold = true;  
            myStyle.FontStyle.Italic = true;  
            myStyle.InteriorStyle.Color = System.Drawing.Color.Gray;  
            myStyle.InteriorStyle.Pattern =Telerik.Web.UI.GridExcelBuilder.InteriorPatternType.Solid;  
            e.Styles.Add(myStyle);  
        }  
 
 
       public void ConfigureExport()                                                                                                                                 
       {  
            RadGrid1.ExportSettings.ExportOnlyData = CheckBox1.Checked;  
           RadGrid1.ExportSettings.IgnorePaging = CheckBox2.Checked;  
           
        }  
        protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)  
        {  
 
            GridViewRow row = e.Row;  
        }  
 
        protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e)  
        {  
            if (isPdfExport && e.Item is GridDataItem)  
            {  
                GridDataItem Item = (GridDataItem)e.Item;  
                Item["PermissionsId"].Style["text-align"] = "center"; // Set the style for column with uniquename FirstName     
            }  
        }    
 
         
      
 
    } 

Thanks!!!
Veli
Telerik team
 answered on 30 Jul 2009
1 answer
212 views
Hello

Are there any examples that show how to manually insert/update rows in a details table. I have found an example for how to do this manually to a master table but that involves saving the data source in view state. I can't imagine you could save all of the details tables for a grid in view state

Thanks
Princy
Top achievements
Rank 2
 answered on 30 Jul 2009
1 answer
380 views
Hi,

I want my RadGrid to be loaded in EditMode, e.g. first row should be edit mode when grid got loaded.

i tried
protected void RadGrid1_DataBound(object sender, EventArgs e)
{
RadGrid radGrid = sender as RadGrid;
if (!radGrid.Items[0].IsInEditMode)
{
radGrid .Items[0].Edit = true;
//radGrid.Rebind();  
}
}

but never loaded in edit mode.

Part 2 of the question, can we set focue to a given cell when it moves in edit mode.

thanks
virendra 
Princy
Top achievements
Rank 2
 answered on 30 Jul 2009
2 answers
191 views
Hi!

I have a DatePicker to filter in grid:

<telerik:GridDateTimeColumn  DataField="JoiningDate" HeaderText="JoiningDate" SortExpression="JoiningDate" UniqueName="JoiningDate" PickerType="DatePicker" DataFormatString="{0:yyyy-MM--dd}" ></telerik:GridDateTimeColumn> 

So how to make the DatePicker  into same format "{0:yyyy-MM--dd}" ?

situation like this:

JoiningDate 
-----------------------------
1/3/2007  (Filter here, selected date)
-----------------------------
2008-01-31
2008-10-01 
2008-01-01


Thanks!

Best Regards
Airad
Airad
Top achievements
Rank 1
 answered on 30 Jul 2009
2 answers
300 views
Hello I am using RadGrid ExpandCollapseColumn
but I am requested to mack all expand icons as expanded mode
any help?
Ihab
Top achievements
Rank 1
 answered on 29 Jul 2009
5 answers
125 views
I want to show/hide pager on the client-side.
For example, a RadGrid has less just one page or has groupings - pager should not be visible .

Thank you in advance!


Jose
Top achievements
Rank 2
 answered on 29 Jul 2009
1 answer
99 views

Hello,
First of all, I would like to say that I absolutely love telerik's controls, they are excellent. Please keep up the good work. Now to the topic, I have been searching for a way to create a textbox like the one displayed on the top-right corner of the homepage, which is essentially a search box. So would anyone kindly please share insights to achieve that?

Best Regards,
Sahil
Sahil Khan
Top achievements
Rank 1
 answered on 29 Jul 2009
2 answers
232 views

Hello,

I am trying to work with an editable grid where an item goes into edit mode with a double click and the updates are done in batch. The code is based loosely on the batch update sample project at http://www.telerik.com/help/aspnet-ajax/grdperformingbatchupdates.html.

When I edit an item and make changes, then double click another item to edit, the data chagned for the first item is lost. Is there a way to preserve the data and keep it displayed on the screen.

Thanks in advance!

 

function

 

RowDblClicked(sender, eventArgs) {

 

 

    var masterTable = $find("<%= RadGrid1.MasterTableView.ClientID %>");

 

 

    var selItem = masterTable.get_selectedItems()[0];

 

 

    if (selItem) {

 

        masterTable.editItem(selItem.get_element());

    }

}

 

<

 

telerik:RadGrid AllowMultiRowEdit="true" AllowMultiRowSelection="false"

 

ID

 

="RadGrid1" runat="server" OnItemCommand="RadGrid1_ItemCommand" >

 

 

    <MasterTableView DataKeyNames="OrderID,ProductID" CommandItemDisplay="Top" EditMode="InPlace">

 

 

    CommandItemTemplate>

 

 

        <asp:LinkButton ID="LinkButton1" CommandName="UpdateChanges" runat="server">Update all</asp:LinkButton>

 

 

    </CommandItemTemplate>

 

 

    </MasterTableView>

 

 

    <ClientSettings>

 

        <

 

Selecting AllowRowSelect="True"></Selecting>

 

 

        <ClientEvents OnRowDblClick="RowDblClicked" />

 

 

    </ClientSettings>

 

</

 

telerik:RadGrid>

 

Cheryl
Top achievements
Rank 1
 answered on 29 Jul 2009
1 answer
117 views
I want every node expanded after the TreeView is bound to its datasource. I can't seem to find a way to do this?
Ristogod
Top achievements
Rank 2
 answered on 29 Jul 2009
0 answers
168 views
Hello,

I´m trying to do something like this:
I have a masterpage and content page. In the content page I have a RadAjaxPanel, inside of it a Repeater and for each Itemtemplate a buttom that on a click sends information to a usercontrol. On this usercontrol I have a Delete Button that removes the item form the DB and re-bind the repeater. 

I was using reflection to re-bind:
MethodInfo mi = this.Page.GetType().GetMethod("DataBindControle", BindingFlags.Public | BindingFlags.Instance); 
            mi.Invoke(this.Page, new Object[] { 0 }); 

However, now I placed the usercontrol inside a UpdatePanel and the method above is not working. Does anybody have an idea on how I can achieve this?

This is the itemtemplate on the content page:

<ItemTemplate> 
                                        <asp:UpdatePanel UpdateMode="Conditional" ID="UpdTeste" runat="server" RenderMode="Inline"
                                            <ContentTemplate> 
                                                <asp:Panel id="pnlInfo" runat="server" style="padding: 4px 0px 4px 0px; height: 18px; vertical-align: middle;"
                                                    <div class="info_row" style="padding: 0px 0px 0px 10px; width: 20px; vertical-align: middle; text-transform: uppercase;"><asp:ImageButton ID="imgDetails" runat="server" ImageUrl="~/images/btn_detail.gif" CommandName="Edit" CommandArgument='<%# Eval("controle_id") %>' style="cursor: pointer;" /></div
                                                    <div class="info_row" style="padding: 4px 0px 4px 0px; width: 130px; vertical-align: middle; text-transform: uppercase;"><b><%# Eval("controledata")%></b></div> 
                                                    <div class="info_row" style="padding: 4px 0px 4px 0px; width: 220px; vertical-align: middle; text-transform: uppercase;"><b><%# Eval("controledescricao_nome")%></b></div> 
                                                    <div class="info_row" style="padding: 4px 0px 4px 0px; width: 100px; vertical-align: middle; text-transform: uppercase;"><b><%# Eval("controle_horainicio")%></b></div> 
                                                    <div class="info_row" style="padding: 4px 0px 4px 0px; width: 100px; vertical-align: middle; text-transform: uppercase;"><b><%# Eval("controle_horafinal") %></b></div> 
                                                    <div class="info_row" style="padding: 4px 0px 4px 0px; width: 240px; vertical-align: middle; text-transform: uppercase;"><b><%# Eval("advogado_nome") %></b></div> 
                                                </asp:Panel> 
                                                <div class="table_footer"/> 
                                                <ControleControl:ControleControl ID="ctlDetail" Value="0" runat="server" Visible="false" /> 
                                            </ContentTemplate>  
                                        </asp:UpdatePanel> 
                                </ItemTemplate> 

Around it there is the RadAjaxPanel.

Thanks in advance.

Rod
rod
Top achievements
Rank 1
 asked on 29 Jul 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?