Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
253 views

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>
Ed Staffin
Top achievements
Rank 1
 answered on 03 Nov 2010
1 answer
107 views
How do i round the corners on a rad ajax panel?
Dimo
Telerik team
 answered on 03 Nov 2010
2 answers
86 views
Attached is a screen shot where the left is IE8 and the right is what it looks like in other major browsers (chrome, FF, etc).

How can I get this combo box to render correctly in IE?

Thanks,
--Jeff
Kalina
Telerik team
 answered on 03 Nov 2010
3 answers
149 views
Hi
i have 3 submit button on the page. all of them works on IE8. there is no problem.
but not working on Firefox.
one of them works. other 2 button not working
i have 3 different ajax panel.
all of them has a login controls.
pls help.
thanks
Jasenko
Top achievements
Rank 1
 answered on 03 Nov 2010
12 answers
258 views
Hello,
I have an MVC view where I want the functionality of presenting a dialog to upload a file. I was thinking about using a hidden RadAsyncUpload control, and customizing the UI. For example, i have a link with text '[Upload File'], and clicking this pops open the dialog, and I show the selected file path inside a div.
Is this possible? What relevant client-side methods would i need, e.g. to open the dialog?
Thanks!
Pete
Genady Sergeev
Telerik team
 answered on 03 Nov 2010
15 answers
654 views
I'm looking for a tool that enhances the RTE and found radEditor that looks like something what I need. So today I downloaded the zip 4.4.0 and tried to install it but failed directly.

Run:
stsadm -o addsolution -filename RadEditorMOSS.wsp

Got this message:
Object reference not set to an instance of an object.
RadEditorMOSS.wsp: The Solution installation failed.


Where do I look for a solution?

Cheers,
Klaus
Hossein Jabbarzadeh
Top achievements
Rank 1
 answered on 03 Nov 2010
4 answers
146 views
Hi Support,

In my application, I have a sequence where the following happens.  The user clicks a button.  A radconfirm message box containing a callback function executes which then potentially executes more code based on whether the user clicks OK or Cancel.  If OK then more servier side code executes.  If Cancel nothing more happens.  This is all working fine with only one problem exists which I'm trying to remedy.  The problem is I would like a "spinny" to work as the code executes since the code takes a long time to finish.   To do this, I imagined I would put code that would ajaxify a panel containing an animated gif.  For example(note, the Button is not shown):

Aspx

 

<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>

 


C#

 

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

 

Josh
Top achievements
Rank 1
 answered on 03 Nov 2010
3 answers
105 views

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.

Dimo
Telerik team
 answered on 03 Nov 2010
6 answers
130 views
Hi,
I'm using a RadTreeView like this:

<

 

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?

 

Oren Halevi
Top achievements
Rank 1
 answered on 03 Nov 2010
1 answer
172 views
Hi
How do I add CalendarExtender dynamically to a GridBoundColumn in EditMode?

Thank you
Neelima
<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>
Maria Ilieva
Telerik team
 answered on 03 Nov 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?