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”?
| <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> |
| 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 |
| <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> |
| .grdContractItems |
| { |
| position: relative; |
| width: 600px; |
| float: left; |
| clear: left; |
| background-color: White; |
| border: solid 0px black; |
| } |
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
| <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> |
| <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> |
| |
| <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> |
| <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> |
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">
| <%@ 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> |
| <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> |