Hi,
I am trying to use a RadTooltip with a RadDatePicker as shown below.
However, the tooltop never seems to pop up. I use vitually teh same markup for the
tooltip on other controls on the page and it seems to work fine. Is there something special I
need to do with the RadDatePicker?
Thansk ... Ed
<telerik:RadDatePicker ID="txtCompletionDate" runat="server" Skin="Windows7" Calendar-Skin="Vista" DateInput-DisplayDateFormat="MM/dd/yyyy" Culture="English (United States)" Calendar-ShowOtherMonthsDays="False" Calendar-ShowRowHeaders="False" Width="110"> <DateInput DisplayDateFormat="MM/dd/yyyy" CausesValidation="True" style="text-align:right" ButtonsPosition="Right" DateFormat="MM/dd/yyyy" Skin="Vista" > </DateInput> <Calendar Skin="Windows7" UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False" ViewSelectorText="x"> <SpecialDays> <telerik:RadCalendarDay Repeatable="Today"> <ItemStyle BackColor="#FFFFCC" /> </telerik:RadCalendarDay> </SpecialDays> </Calendar> <DatePopupButton HoverImageUrl="" ImageUrl="" /> </telerik:RadDatePicker> <telerik:RadToolTip ID="RadToolTipCompletionDate" runat="server" TargetControlID="txtCompletionDate" Title="Admin" Text="Actual date of delivery in production from IT & BI." Skin="Windows7" AutoCloseDelay="20000"/> <asp:CompareValidator ID="cvCompletionDate" runat="server" ErrorMessage="Must be a valid date" Type="Date" SetFocusOnError="True" Operator="DataTypeCheck" ControlToValidate="txtCompletionDate" Display="Dynamic"> </asp:CompareValidator> 
<asp:Panel ID="PanelLoadPlace" runat="server" style="padding-bottom:5px;">
<asp:Label ID="LabelSpacerForLoadingPanel" runat="server" Width="100px" Height="20px" />
</asp:Panel>
<telerik:RadAjaxLoadingPanel ID="panelLoading" runat="server" Style="margin-top: 0px;"
HorizontalAlign="center" IsSticky="false" Transparency="30" InitialDelayTime="100"
MinDisplayTime="500">
<asp:Image ID="ImageLoading" runat="server" ImageUrl="~/Images/loading.gif" BorderWidth="0px"
AlternateText="Loading..." />
</telerik:RadAjaxLoadingPanel>
protected void Manager_AjaxRequest(object sender, AjaxRequestEventArgs e)
{
RadAjaxManager
.GetCurrent(Page).AjaxSettings.AddAjaxSetting(Button, PanelLoadPlace, panelLoading);
}
However, this didn't work. I tried placing the above line AddAjaxSetting line immediately after the RadConfirm and that didn't work either. Any ideas?
Josh
Hi,
We are trying to use RadGrid to display results from SharePoint Search. We are using custom paging and getting only 10 pages at any time.
We tried using Custom paging for Radgrid to get correct total count and pager.
Paging for sharepoint behaves in a different way and we need to change URL for pager links to get it working.
Current URL for any pager item is similar to below:
javascript:__doPostBack('ctl00$m$g_97f5302f_eb53_4e7e_ad4d_174495682a37$ctl00$InvoicesGrid$ctl00$ctl03$ctl01$ctl05','')
We need to change it to something similar to below…
http://<sitename>/Sites/Search/Pages/results.aspx?k=ABC%3ALAB&start1=1
where start1 indicates the starting index of current page i.e PageSize * PageIndex + 1
Thanks.

<
telerik:RadTreeView ID="WebTreeFolders"
runat="server"
Height="100%"
CheckBoxes="True"
CheckChildNodes="true"
PersistLoadOnDemandNodes="false"
EnableViewState="false" >
<WebServiceSettings Path="Export.aspx" Method="GetNodeItems" />
</telerik:RadTreeView>
The treeview loads child node when expanded using a static page method, and eveything works fine but the following scenario:
1) A node which NOT expanded is checked.
2) that node is then expanded.
3) Upon expand, the child nodes are populated using a web service method.
4) child node appear un-selected, although their parent node is selected.
How can I overcome this?
<telerik:RadGrid ID="RadGrid1" runat="server" AllowSorting="True" ShowGroupPanel="True" AutoGenerateColumns="False" Skin="Sunset" AllowPaging="True"> <MasterTableView EditMode="InPlace" DataKeyNames="Trip_ID" GroupLoadMode="Client"> <CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings> <RowIndicatorColumn> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <ExpandCollapseColumn> <HeaderStyle Width="20px"></HeaderStyle> </ExpandCollapseColumn> <Columns> <telerik:GridEditCommandColumn ButtonType="ImageButton"> </telerik:GridEditCommandColumn> <telerik:GridBoundColumn HeaderText="Date" UniqueName="BoundDate" DataField="Start_Dt"></telerik:GridBoundColumn> </Columns> <EditFormSettings> <EditColumn UniqueName="EditCommandColumn1"></EditColumn> </EditFormSettings> </MasterTableView> <GroupingSettings ShowUnGroupButton="True" /> <ClientSettings AllowDragToGroup="True" allowcolumnsreorder="True" columnsreordermethod="Reorder" reordercolumnsonclient="True" AllowGroupExpandCollapse="True" > <ClientEvents OnRowContextMenu="RowContextMenu"></ClientEvents> </ClientSettings> </telerik:RadGrid>