Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
122 views

Hi,

I want to use the same XML data source to load tabs in a RadTabStrip (used as the Menu on the page) and a RadTreeView (used as a SiteMap).

The XML file must have one (and only one) root element . Unfortunately the root element is displayed in the RadTabStrip and because of that I can only have one root tab…

The XML file looks like this:

<?xml version="1.0" encoding="utf-8" ?>

<Items Text="1" Url="">

  <Item Text="European cities" Url="" >

    <Item Text="Sofia" Url="http://en.wikipedia.org/wiki/Sofia" />

    <Item Text="Berlin" Url="http://en.wikipedia.org/wiki/Berlin" />

    <Item Text="Paris" Url="http://en.wikipedia.org/wiki/Paris" />

  </Item>

</Items>

I load the file like this:

Dim x As New XmlDataSource

x.DataFile = strVirtualFolder & "/xml/SiteMap_TelerikMenuTest.xml"

 

 

m.DataTextField = "Text"

m.DataNavigateUrlField = "Url"

m.DataBind()

And my ASPX file:

<telerik:RadTabStrip ID="m" UnSelectChildren="true" Skin="Office2007" runat="server" dir="ltr" CausesValidation="false" SelectedIndex="-1" >

    </telerik:RadTabStrip>

 

How can I have more than one ”root tab”?

Atanas Korchev
Telerik team
 answered on 23 Apr 2009
1 answer
160 views
I have some questions According to your tutorials "Customize the Advanced Form Template" at: http://www.telerik.com/help/aspnet-ajax/schedule_advancedformtemplate.html :
  1. Would it be possible to use Editor for Description Field ?
  2. Is your setting on "MultipleValuesResourceControl" from file AdvancedForm.ascx:
                <div class="rsAdvOptionsPanel"
                    <asp:Panel  runat="server" ID="ResourceControls"
                        <ul class="rsResourceControls"
                            <li> 
                                <scheduler:MultipleValuesResourceControl    runat="server" ID="ResourceControl1" 
                                                        Type="Room" Label="Room: " Value='<%# Bind("Room") %>' /> 
                            </li> 
                            <li> 
                                <scheduler:ResourceControl  runat="server" ID="ResourceControl2" 
                                                        Type="User" Label="User: " Value='<%# Bind("User") %>' /> 
                            </li> 
                            <!-- Optionally add more ResourceControl instances here --> 
                        </ul> 
                    </asp:Panel> 
                </div> 

    has disable the setting from file DefaultVB.aspx.vb:
            Protected Sub RadScheduler1_DataBound(ByVal sender As Object, ByVal e As EventArgs) 
                RadScheduler1.ResourceTypes.FindByName("User").AllowMultipleValues = True 
                RadScheduler1.ResourceTypes.FindByName("Room").AllowMultipleValues = False 
            End Sub 
    I'd like to keep the setting from file "DefaultVB.aspx.vb, how can i modify file AdvancedForm.ascx ?
Peter
Telerik team
 answered on 23 Apr 2009
5 answers
114 views
I would like to cross-post here something that I just posted on the ASP.Net forums.

I want to restate again that I have been and will continue to be a HUGE FAN of Telerik and the RadTreeView.  I do believe that I've improperly used your product (version 6.3.3) and am simply seeking help to resolve the problem.

Once again, the pertinent questions I have are these:
  1. With the RadTreeView, I am loading on demand so why is so much data being brought down from the server each time?
  2. With the first screenshot you see, I actually viewed the source, copied it all into Notepad, and saved it into a text file.  It was only 84K.  Why then do I have those 230K Fiddler numbers?
  3. Does Telerik's newer RadTreeView helps resolve some of these problems?  I was gearing up to upgrade to VS2008 and their latest RadTreeView but haven't as of yet.

Sincerely,

Robert Werner
Robert
Top achievements
Rank 1
 answered on 23 Apr 2009
1 answer
81 views
I have the following RadGrid:
<telerik:RadGrid ID="grdContractItems" runat="server"   
    CssClass="grdContractItems" AutoGenerateColumns="False" GridLines="Both"   
     ShowHeader="true" 
    onitemdatabound="grdContractItems_ItemDataBound" Height="250px">  
    <ClientSettings> 
        <Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="true" FrozenColumnsCount="1" /> 
    </ClientSettings> 
 

With the following CSS:
.grdContractItems  
{  
    positionrelative;  
    width600px;  
    floatleft;  
    clearleft;  
    background-color: White;  
    bordersolid 0px black;  

But the resulting grid has a grey background, a border, and when a scroll appears it seems to show a grey area where the horizontal scroll would show if it is needed... though its not in my code.

What am I doing wrong?
Pavlina
Telerik team
 answered on 23 Apr 2009
1 answer
109 views

Hi
Issue #1:
   I used Rad grid with in User control.  The User Control have some set of Function . like Area Associations    wtith drop down, like wise Country, State, City.  When i Choose the Country drop down values that time loaded the related cities in Second Drop down like wise...
and Also some Dynamic Control are there for example When i Click the button that time the automatic row generated... my problem is i Edit Come text box values in Update mode. then i click this button that time the Edited values is disappear . and database values is display again.  How can i Solve this problem. the Edit Mode Code event i wrote in Code Behind C#.Net.

Issue #2
   i could not call the Ajax in edit mode drop down and another control How can i call the Ajax in edit mode Control . For example The above example area association country, state, city.  is not properly doing in Ajax in Edit Mode. and Button Click event the Auto Generated Column is not Working the Ajax. How can i Fix this Problem

Regards
G. Manikandan

Georgi Krustev
Telerik team
 answered on 23 Apr 2009
3 answers
200 views
I have a Rad Grid in my web site,here the rad grid is ajaxified using the radajax panel,inside the rad grid i have detail tables,when i select the detail tables clientselectcolumn and then click the link button inside the detail tables,the ajax modal popup is show,at that time all details tables clientselectcolumn are selected so,it will select all the detail tables record
 <DetailTables> 
                                <telerik:GridTableView NoDetailRecordsText="Contact(s) not exist to this company.." 
                                    NoMasterRecordsText="Contact(s) not exist to this company.." CommandItemDisplay="Top" 
                                    AllowSorting="False" AllowPaging="false" Name="Contacts"  ClientDataKeyNames="ContactId" DataKeyNames="ContactId,CompanyId" Width="100%" 
                                    runat="server">  
                                    <ParentTableRelation> 
                                        <telerik:GridRelationFields DetailKeyField="CompanyId" MasterKeyField="CompanyId" /> 
                                    </ParentTableRelation> 
                                    <CommandItemTemplate> 
                                        <div style="padding-top: 7px; padding-bottom: 7px;">  
                                            <asp:LinkButton ID="lnkAddNew" runat="server" CommandName="AddNewContact">  
                                        <img style="border:0px;vertical-align:middle;" alt="Add Contact" src="Images/addnew.gif" /> Add New</asp:LinkButton>&nbsp;&nbsp;&nbsp;  
                                            <asp:LinkButton ID="Lnkdeleteselected" runat="server" CommandName="DeleteSelectedContact" 
                                                CausesValidation="false">  
                                        <img style="border:0px;vertical-align:middle;"  alt="Delete Selected Contacts" src="Images/delete.gif" /> Delete Selected</asp:LinkButton> 
                                            &nbsp;&nbsp;&nbsp;  
                                            <asp:LinkButton ID="LnkPrintContact" Visible="false" runat="server" CommandName="PrintContact">  
                                        <img style="border:0px;vertical-align:middle;" alt="Print" src="Images/print.gif" /> Print</asp:LinkButton> 
                                        </div> 
                                    </CommandItemTemplate> 
                                    <Columns> 
                                        <telerik:GridBoundColumn DataField="CompanyId" DataType="System.Int32" HeaderText="CompanyId" 
                                            ReadOnly="True" SortExpression="CompanyId" UniqueName="CompanyId" Visible="False">  
                                        </telerik:GridBoundColumn> 
                                        <telerik:GridBoundColumn DataField="ContactId" DataType="System.Int32" HeaderText="ContactId" 
                                            ReadOnly="True" SortExpression="ContactId" UniqueName="ContactId" Visible="False">  
                                        </telerik:GridBoundColumn> 
                                        <telerik:GridClientSelectColumn  Reorderable="False" UniqueName="ClientDetailSelectColumn">  
                                            <HeaderStyle Width="20px"></HeaderStyle> 
                                        </telerik:GridClientSelectColumn> 
                                        <telerik:GridTemplateColumn SortExpression="ContactName" GroupByExpression="ContactName ContactName Group By ContactName" 
                                            HeaderText="Contact Name" UniqueName="ContactName">  
                                            <ItemTemplate> 
                                                <asp:LinkButton ID="lnkContactName" runat="server" CommandName="ContactName" Text='<%#DataBinder.Eval(Container.DataItem, "ContactName")%>'></asp:LinkButton> 
                                            </ItemTemplate> 
                                            <ItemStyle Width="22%" Wrap="False" /> 
                                        </telerik:GridTemplateColumn> 
                                        <telerik:GridBoundColumn DataField="FullAddress" HeaderText="Address" SortExpression="FullAddress" 
                                            UniqueName="Address">  
                                            <ItemStyle Width="15%" Wrap="False" /> 
                                        </telerik:GridBoundColumn> 
                                        <telerik:GridTemplateColumn SortExpression="PhoneNumber" GroupByExpression="PhoneNumber PhoneNumber Group By PhoneNumber" 
                                            HeaderText="Phone Number" UniqueName="TemplateColumn">  
                                            <ItemTemplate> 
                                                <table> 
                                                    <tr> 
                                                        <td style="border: none;">  
                                                            <asp:Image ImageUrl="~/Images/telephone.gif" Visible="false" ID="ImgPhone1" runat="server" /></td>  
                                                        <td style="border: none;">  
                                                            <asp:Label ID="LblPhone1" Visible="false" runat="server"></asp:Label></td>  
                                                    </tr> 
                                                    <tr> 
                                                        <td style="border: none;">  
                                                            <asp:Image ImageUrl="~/Images/telephone.gif" Visible="false" ID="ImgPhone2" runat="server" /></td>  
                                                        <td style="border: none;">  
                                                            <asp:Label ID="LblPhone2" Visible="false" runat="server"></asp:Label></td>  
                                                    </tr> 
                                                    <tr> 
                                                        <td style="border: none;">  
                                                            <asp:Image ImageUrl="~/Images/telephone.gif" Visible="false" ID="ImgPhone3" runat="server" /></td>  
                                                        <td style="border: none;">  
                                                            <asp:Label ID="LblPhone3" Visible="false" runat="server"></asp:Label></td>  
                                                    </tr> 
                                                </table> 
                                            </ItemTemplate> 
                                            <ItemStyle Width="20%" Wrap="False" /> 
                                        </telerik:GridTemplateColumn> 
                                        <telerik:GridTemplateColumn SortExpression="Fax" GroupByExpression="Fax Fax Group By Fax" 
                                            HeaderText="Fax Number" UniqueName="TemplateColumn1">  
                                            <ItemTemplate> 
                                                <table style="border: none;">  
                                                    <tr> 
                                                        <td style="border: none;">  
                                                            <asp:Image ImageUrl="~/Images/fax.gif" Visible="false" ID="ImgFax1" runat="server" /></td>  
                                                        <td style="border: none;">  
                                                            <asp:Label ID="LblFax1" Visible="false" runat="server"></asp:Label></td>  
                                                    </tr> 
                                                    <tr> 
                                                        <td style="border: none;">  
                                                            <asp:Image ImageUrl="~/Images/fax.gif" Visible="false" ID="ImgFax2" runat="server" /></td>  
                                                        <td style="border: none;">  
                                                            <asp:Label ID="LblFax2" Visible="false" runat="server"></asp:Label></td>  
                                                    </tr> 
                                                    <tr> 
                                                        <td style="border: none;">  
                                                            <asp:Image ImageUrl="~/Images/fax.gif" Visible="false" ID="ImgFax3" runat="server" /></td>  
                                                        <td style="border: none;">  
                                                            <asp:Label ID="LblFax3" Visible="false" runat="server"></asp:Label></td>  
                                                    </tr> 
                                                </table> 
                                            </ItemTemplate> 
                                            <ItemStyle Width="20%" Wrap="False" /> 
                                        </telerik:GridTemplateColumn> 
                                        <telerik:GridTemplateColumn SortExpression="Email" GroupByExpression="Email Email Group By Email" 
                                            HeaderText="Email" UniqueName="TemplateColumn2">  
                                            <ItemTemplate> 
                                                <table> 
                                                    <tr> 
                                                        <td style="border: none;">  
                                                            <asp:Image ImageUrl="~/Images/email.gif" Visible="false" ID="ImgEmail1" runat="server" /></td>  
                                                        <td style="border: none;">  
                                                            <asp:LinkButton ID="LnkEmail1" CommandName="Email1" Visible="false" runat="server"></asp:LinkButton> 
                                                        </td> 
                                                    </tr> 
                                                    <tr> 
                                                        <td style="border: none;">  
                                                            <asp:Image ImageUrl="~/Images/email.gif" Visible="false" ID="ImgEmail2" runat="server" /></td>  
                                                        <td style="border: none;">  
                                                            <asp:LinkButton ID="LnkEmail2" CommandName="Email2" Visible="false" runat="server"></asp:LinkButton></td>  
                                                    </tr> 
                                                    <tr> 
                                                        <td style="border: none;">  
                                                            <asp:Image Visible="false" ImageUrl="~/Images/email.gif" ID="ImgEmail3" runat="server" /></td>  
                                                        <td style="border: none;">  
                                                            <a><asp:LinkButton Visible="false" CommandName="Email3"  ID="LnkEmail3" runat="server"></asp:LinkButton></a></td> 
                                                    </tr> 
                                                </table> 
                                            </ItemTemplate> 
                                            <ItemStyle Width="35%" Wrap="False" /> 
                                        </telerik:GridTemplateColumn> 
                                        <telerik:GridBoundColumn Visible="False" DataField="Status" HeaderText="Status" SortExpression="Status" 
                                            UniqueName="Status">  
                                            <ItemStyle Wrap="False" /> 
                                        </telerik:GridBoundColumn> 
                                        <telerik:GridTemplateColumn Groupable="False" UniqueName="TemplateColumn3">  
                                            <ItemTemplate> 
                                                <asp:LinkButton ID="LnkEditDetail" runat="server" CommandName="EditContact">  
                                                    <asp:Image ID="ImgEdit" runat="server" ImageUrl="~/Images/edit.gif" ToolTip="Edit contact " 
                                                        AlternateText="Edit contact" /> 
                                                </asp:LinkButton>&nbsp;&nbsp;&nbsp;  
                                                <asp:LinkButton ID="LnkDeleteDetail" runat="server" CommandName="DeleteContact">  
                                                    <asp:Image ID="ImgDelete" runat="server" ImageUrl="~/Images/delete.gif" ToolTip="Delete contact" 
                                                        AlternateText="Delete contact" /> 
                                                </asp:LinkButton> 
                                            </ItemTemplate> 
                                            <ItemStyle Wrap="False" HorizontalAlign="Center" /> 
                                        </telerik:GridTemplateColumn> 
                                    </Columns> 
                                    <ExpandCollapseColumn> 
                                        <HeaderStyle Width="20px" /> 
                                    </ExpandCollapseColumn> 
                                    <RowIndicatorColumn> 
                                        <HeaderStyle Width="20px" /> 
                                    </RowIndicatorColumn> 
                                </telerik:GridTableView> 
                            </DetailTables> 
Georgi Krustev
Telerik team
 answered on 23 Apr 2009
4 answers
379 views

I am receiving the error message"capacity was less than the current size.Parameter name: capacity"
  when selecting one of the comboboxitems and then click on the next page link (combobox bottom)


 
This is the properties which I set
<
telerik:RadComboBox ID="cbDistrict" runat="server" DataTextField="DistrictName"

 

 

 

DropDownWidth="200px" MaxHeight="200px" DataValueField="DistrictId"

 

 

EnableLoadOnDemand="true" EnableVirtualScrolling="true" ShowMoreResultsBox="true" Width="153px"

 

 

 

EnableItemCaching="true" OnClientItemsRequesting="OnDistrictItemsRequesting"

 

 

OnClientSelectedIndexChanged="OnDistrictSelectedIndexChanged" OnClientTextChange="OnDistrictTextChange"

 

 

 

OnClientLoad="OnDistrictComboBoxLoaded">

 

 

 

Atanas Korchev
Telerik team
 answered on 23 Apr 2009
10 answers
529 views
What might cause the error: "Sys.InvalidOperationException: ScriptLoader.loadScripts cannot be called while the ScriptLoader is already loading scripts."?
It happens when a user makes a few clicks on different controls pretty fast. The page contains javascript code surrounded by RadScriptBlock.
Sebastian
Telerik team
 answered on 23 Apr 2009
6 answers
471 views
Posted on the menu forum, but have not gotten a response.  There seems to be some kind of problem when using a radwindow as a response to a contextmenu item click.  Once you click on the menu item, you get a javascript error, 'type' is null or not an object, in a dynamic Telerik.Web.UI code.  This is on Q1 2009.

Here is a very simple page to reproduce the issue:

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="test.aspx.vb" Inherits="test" %>    
    
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">    
    
<html xmlns="http://www.w3.org/1999/xhtml">     
<head runat="server">     
    <title></title>     
    <script language="javascript" type="text/javascript">     
    
        function onClicking(sender, eventArgs) {     
            var item = eventArgs.get_item();     
    
            var oManager = GetRadWindowManager();     
            var navigateUrl = item.get_navigateUrl();     
    
            eventArgs.set_cancel(true);     
    
            if (navigateUrl && navigateUrl != "#") {     
                oManager.open(navigateUrl, "document");     
    
            }     
        }     
    
    </script>    
</head>    
<body>    
    <form id="form1" runat="server">     
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">     
    </telerik:RadScriptManager>    
    <div>    
        <telerik:RadContextMenu ID="RadContextMenu1" runat="server" OnClientItemClicking="onClicking">     
        <Targets>    
            <telerik:ContextMenuDocumentTarget />    
        </Targets>    
        <Items>    
            <telerik:RadMenuItem Text="Documents">     
                <Items>    
                    <telerik:RadMenuItem Text="Item 1" NavigateUrl="documents/Sample/Sample%20Lease%20Document%202008.pdf">     
                    </telerik:RadMenuItem>    
                    <telerik:RadMenuItem Text="Item 2">     
                    </telerik:RadMenuItem>    
                </Items>    
            </telerik:RadMenuItem>    
        </Items>    
        </telerik:RadContextMenu>        
        <telerik:RadWindowManager ID="RadWindowManager1" runat="server">     
        </telerik:RadWindowManager>    
    </div>    
    </form>    
</body>    
</html>    
    
 
jorge
Top achievements
Rank 1
 answered on 23 Apr 2009
1 answer
143 views
Hi all, i am encountering a problem that many others have had,

i am using a page that contains a user control, on the user control there are a few comboboxes, i am trying to change data in the combobox without having to do a postback, i have looked at the demos and other posts people have made and tried to use the methods provided but with no luck, the closest i have come is to have it working but with the following error on screen:

32709|updatePanel|Filter_Filter_cboSitePanel|

and the following code error:

Message: Sys.InvalidOperationException: A control is already associated with the element.

my code is as follows:

<asp:ScriptManager ID="ScriptManager1" runat="server" /> 
         <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="RadAjaxLoadingPanel1">   
           <AjaxSettings>  
               <telerik:AjaxSetting AjaxControlID="btnGetSites">   
                   <UpdatedControls>  
                       <telerik:AjaxUpdatedControl ControlID="cboSite" />  
                   </UpdatedControls>  
               </telerik:AjaxSetting>  
               <telerik:AjaxSetting AjaxControlID="btnGetLocations"
                    <UpdatedControls> 
                        <telerik:AjaxUpdatedControl ControlID="cboLocation" /> 
                    </UpdatedControls> 
               </telerik:AjaxSetting> 
           </AjaxSettings>  
       </telerik:RadAjaxManager>  
        <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Transparency="30"  
            BackColor="#E0E0E0" InitialDelayTime="500" >  
            <asp:Image ID="Image1" runat="server" />   
        </telerik:RadAjaxLoadingPanel>  
        <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingCombos" runat="server" Transparency="30"  
            BackColor="#E0E0E0" InitialDelayTime="500">   
            <asp:Image ID="Image2" runat="server"/>   
        </telerik:RadAjaxLoadingPanel>  
 
<div>  
<asp:UpdatePanel ID="UpdatePanel1" runat="server"
<ContentTemplate> 
          <table border="0" cellpadding="0" cellspacing="0" style="width: 190px; overflow: scroll;" enableviewstate="true" id="TABLE1"
                                    <tr> 
                                        <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px; 
                                            border-bottom: #000000 1px solid"> 
                                            <asp:Label ID="lblHeader" runat="server" Style="font-weight: bold; font-size: 10pt; 
                                                color: #a276b6; font-family: tahoma" Text="Filter Details"></asp:Label></td
                                    </tr> 
                                    <tr> 
                                        <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                            <asp:Label ID="lblAccount" runat="server" Style="font-size: 8pt; font-family: tahoma; color: #a276b6;" 
                                                Text="Account:" Font-Bold="True"></asp:Label> 
                                            </td> 
                                    </tr> 
                                    <tr> 
                                        <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                            <telerik:RadComboBox ID="cboAccount" runat="server" Skin="Default" ZIndex="25000" EnableItemCaching="True" Width="190px" style="overflow: hidden" Height="250px" DropDownWidth="350px" AutoPostBack="True"
                                                <ItemTemplate> 
                                                 <div> 
                                                        <telerik:RadTreeView ID="trvAccount" runat="server" CheckBoxes="True" OnClientNodeChecked="onClientNodeChecked" Height="200px"
                                                            <Nodes> 
                                                                <telerik:RadTreeNode runat="server" Text="Select All"
                                                                </telerik:RadTreeNode> 
                                                            </Nodes> 
                                                        </telerik:RadTreeView> 
                                                        </div> 
                                                        <table border="0" cellpadding="0" cellspacing="0" style="width: 100%"
                                                            <tr> 
                                                                <td style="text-align: center"
                                                                    <asp:Button ID="btnGetSites" runat="server" Text="Submit" OnClick="btnGetSites_Click" UseSubmitBehavior="False" /></td
                                                            </tr> 
                                                        </table> 
                                                </ItemTemplate> 
                                            </telerik:RadComboBox> 
                                                                    </td> 
                                    </tr> 
                                    <tr> 
                                        <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                            <asp:Label ID="lblSite" runat="server" Style="font-size: 8pt; font-family: tahoma; color: #a276b6;" 
                                                Text="Site:" Font-Bold="True"></asp:Label></td
                                    </tr> 
                                    <tr> 
                                        <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                            <telerik:RadComboBox ID="cboSite" runat="server" Skin="Default" AutoPostBack="True" OnClientNodeChecked="onClientNodeChecked" OnSelectedIndexChanged="cboSite_SelectedIndexChanged" Width="190px" Height="250px" DropDownWidth="350px"
                                                <ItemTemplate> 
                                                        <telerik:RadTreeView ID="trvSite" runat="server" OnClientNodeChecked="onClientNodeChecked" OnClientNodeClicking="nodeSiteClicking" CheckBoxes="True" Height="200px"
                                                        </telerik:RadTreeView><table border="0" cellpadding="0" cellspacing="0" style="width: 100%"
                                                            <tr> 
                                                                <td style="text-align: center"
                                                                    <asp:Button ID="btnGetLocations" runat="server" Text="Submit" OnClick="btnGetLocations_Click" /></td
                                                            </tr> 
                                                        </table> 
                                                </ItemTemplate> 
                                            </telerik:RadComboBox> 
                                        </td> 
                                    </tr> 
                                    <tr> 
                                        <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                            <asp:Label ID="lblLocation" runat="server" Style="font-size: 8pt; font-family: tahoma; color: #a276b6;" 
                                                Text="Location:" Font-Bold="True"></asp:Label></td
                                    </tr> 
                                    <tr> 
                                        <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                            <telerik:RadComboBox ID="cboLocation" runat="server" Skin="Default" Width="190px" Height="250px" DropDownWidth="350px"
                                                <ItemTemplate> 
                                                    <div id="div3"
                                                        <telerik:RadTreeView ID="trvLocation" runat="server" OnClientNodeChecked="onClientNodeChecked" OnClientNodeClicking="nodeLocationClicking" CheckBoxes="True" Height="200px"
                                                        </telerik:RadTreeView><table border="0" cellpadding="0" cellspacing="0" style="width: 100%"
                                                            <tr> 
                                                                <td style="text-align: center"
                                                                    <asp:Button ID="btnSubmitLocation" runat="server" Text="Submit" OnClick="btnSubmitLocation_Click" /></td
                                                            </tr> 
                                                        </table> 
                                                    </div> 
                                                </ItemTemplate> 
                                            </telerik:RadComboBox> 
                                        </td> 
                                    </tr> 
                                    <tr> 
                                        <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                            <asp:Label ID="lblAudit" runat="server" Style="font-size: 8pt; font-family: tahoma; color: #a276b6;" 
                                                Text="Audit:" Font-Bold="True"></asp:Label></td
                                    </tr> 
                                    <tr> 
                                        <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                            <telerik:RadComboBox ID="cboAudit" runat="server" Skin="Default" Width="190px" DropDownWidth="350px" Height="250px"
                                                <ItemTemplate> 
                                                <div id="div4"
                                                    <telerik:RadTreeView ID="trvAudits" runat="server" OnClientNodeChecked="onClientNodeChecked" OnClientNodeClicking="nodeAuditClicking" CheckBoxes="True" Height="200px"
                                                    </telerik:RadTreeView><table border="0" cellpadding="0" cellspacing="0" style="width: 100%"
                                                        <tr> 
                                                            <td style="text-align: center"
                                                                <asp:Button ID="btnSubmitAudits" runat="server" Text="Submit" OnClick="btnSubmitAudits_Click" /></td
                                                        </tr> 
                                                    </table> 
                                                    </div> 
                                                </ItemTemplate> 
                                            </telerik:RadComboBox> 
                                        </td> 
                                    </tr> 
                                    <tr> 
                                        <td> 
                                            <table border="0" cellpadding="0" cellspacing="0" style="width: 100%"
                        <tr> 
                            <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                <asp:Label ID="lblDates" runat="server" Style="font-weight: bold; font-size: 8pt; 
                                    font-family: tahoma; color: #a276b6;" Text="Dates:"></asp:Label></td
                        </tr> 
                        <tr> 
                            <td colspan="1" style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; 
                                padding-top: 5px"> 
                                <asp:RadioButtonList ID="rbtnRange" runat="server" AutoPostBack="True" RepeatDirection="Horizontal" style="font-size: 8pt" OnSelectedIndexChanged="RadioButtonList1_SelectedIndexChanged"
                                    <asp:ListItem Selected="True">All</asp:ListItem> 
                                    <asp:ListItem>Dates</asp:ListItem> 
                                </asp:RadioButtonList></td
                        </tr> 
                        <tr> 
                            <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                <asp:Label ID="lblDateFrom" runat="server" Style="font-size: 8pt; font-family: tahoma; color: #a276b6;" 
                                    Text="Date From:" Font-Bold="True"></asp:Label></td
                        </tr> 
                        <tr> 
                            <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                <telerik:RadDatePicker ID="calFrom" runat="server" Enabled="False" Skin="Default" Width="190px"
                                    <DatePopupButton HoverImageUrl="" ImageUrl="" CssClass="rcCalPopup rcDisabled" /> 
                                    <Calendar UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False" 
                                        ViewSelectorText="x"
                                    </Calendar> 
                                    <DateInput DateFormat="dd/MM/yyyy"
                                    </DateInput> 
                                </telerik:RadDatePicker> 
                            </td> 
                        </tr> 
                    </table> 
                </td> 
            </tr> 
            <tr> 
                <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                                <asp:Label ID="Label2" runat="server" Style="font-size: 8pt; font-family: tahoma; color: #a276b6;" 
                                    Text="Date To:" Font-Bold="True"></asp:Label></td
            </tr> 
            <tr> 
                <td style="padding-right: 10px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px"
                    <telerik:RadDatePicker ID="calTo" runat="server" Enabled="False" Skin="Default" Width="190px"
                        <DatePopupButton HoverImageUrl="" ImageUrl="" CssClass="rcCalPopup rcDisabled" /> 
                        <Calendar UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False" 
                            ViewSelectorText="x"
                        </Calendar> 
                        <DateInput DateFormat="dd/MM/yyyy"
                        </DateInput> 
                    </telerik:RadDatePicker> 
                </td> 
            </tr> 
            <tr> 
                <td style="padding-right: 20px; padding-left: 10px; padding-bottom: 5px; padding-top: 5px; 
                    text-align: center"> 
                                            </td> 
            </tr> 
        </table>  
</ContentTemplate> 
</asp:UpdatePanel> 
</div>  

i am using RadControls for ASPNET AJAX Q1 2009, what am i missing??

thanks in advance
Iana Tsolova
Telerik team
 answered on 23 Apr 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
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
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?