Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
218 views
Is it possible to Collapse\Expand a ListBox control? any Idea to do that?
Revathi Panneerselvam
Top achievements
Rank 1
 answered on 20 Oct 2010
4 answers
107 views
I want to highlight headers for some special days by the following way:
-for Day View structure highlight text in Day Header
-for Week View structure highlight corresponding weekly column headers
-for Month View structure highlight  date in corresponding cells.

Please advice.
Peter
Telerik team
 answered on 20 Oct 2010
1 answer
103 views
Hi!

If I put a RadToolTip in the root and also set RenderInPageRoot="true" and I have a couple of buttons inside an RadAjaxPanel in this tooltip. When I click a button in the tooltip I force update another RadAjaxPanel using: RadAjaxPanel1.ResponseScripts.Add(string.Format("$find('{0}').ajaxRequest();", RadAjaxPanel2.ClientID));

This works, it updates the second panel and the data I want is updated as well. The only problem is that the RadToolTip doesn't work for that control anymore. The RadToolTip has TargetControlID="" one of the controls in the second panel.

Another problem is if I don't use RenderInPageRoot="true" The tooltip first pops up at the bottom right of the parent div then jumps to the correct position.

EDIT: The align problem only appears when I use Animation="Slide"
EDIT: The align problem appears when using any kind of animation

Any solution to any of these problems would be great.

Regards, Jerry
Svetlina Anati
Telerik team
 answered on 20 Oct 2010
1 answer
170 views
There must be a solution for this, but I've yet to find it.

I've got an iframe filled with juicy RadTextBoxes, and I want to set their values from a javascript function in the parent frame.  How is this accomplished?

Jesse
Cori
Top achievements
Rank 2
 answered on 20 Oct 2010
1 answer
124 views
The PopUp Edit Form window disappears when I try to insert or edit my information even with validation controls in the form. What's the best way to keep the PopUp Edit Form window visible until the information entered is valid? 


I tried this but the window still closed.
            if (e.Exception != null)
            {
                e.ExceptionHandled = true;
                SetMessage("Product cannot be inserted. Reason: " + e.Exception.Message);
            }
            else
            {
                SetMessage("New product is inserted!");
            }



Thx
Shinu
Top achievements
Rank 2
 answered on 20 Oct 2010
2 answers
97 views
Hi,

I have a radgird which allows the user to insert a new record using a form template. However, when the user enters the required information, then presses enter the insert command is not fired.

Is there any way to wire up the grid to force an insert when the user presses enter?

Thanks
James Hacking
Top achievements
Rank 1
 answered on 20 Oct 2010
6 answers
114 views
Hi all,

   I wonder if there's a fix with this issue. 

   After upgrading Telerik ASP.Net AJAX Q3 2009 from Q1 2009, there is an issue with RadDateInput with EmptyMessage attribute.  Here's the code snippet.

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> 
<!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
    <telerik:RadStyleSheetManager id="RadStyleSheetManager1" runat="server" /> 
</head> 
<body> 
    <form id="form1" runat="server"
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server"
        <Scripts> 
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> 
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> 
        </Scripts> 
    </telerik:RadScriptManager> 
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"
    </telerik:RadAjaxManager> 
    <div> 
<telerik:RadDateInput ID="RadDateInputDOB" runat="server" Skin="WebBlue"  
                Culture="en-US" MinDate="01/01/1900" MaxDate="12/31/2999" MaxLength="10" 
                DisplayDateFormat="MM/dd/yyyy" 
                EmptyMessage = "MM/DD/YYYY" 
                DateFormat="MM/dd/yyyy" Width="120px"
            </telerik:RadDateInput> 
            </div> 
    <asp:Button ID="Button1" runat="server" Text="Button" /> 
    </form> 
</body> 
</html> 
 

When the RadDateInput has empty value, it's the following bug.  Here's the step to reproduce.
  1. Leave RadDateInputDOB without value.
  2. Press Button1 and return to the same page.
  3. Wait the page is refreshed.  I notice RadDateInputDOB display changes from greyed to black, indicating there's value.
  4. Click RadDateInputDOB.  Notice the value becomes 0NaN/0NaN/0NaN.
  5. When RadDateInput is out of focus, the vlaue becomes 12/31/1998, not blank.

I can get rid of this issue by removing EmptyMessage attribute.  But I need to put the EmptyMessage value back eventually.

Thanks in advance.
Dimo
Telerik team
 answered on 20 Oct 2010
4 answers
126 views
Hi,

The following must be MinFontSize and MaxFontSize I think...
RadTagCloud Icon

RadTagCloud

What’s Fixed

  • Fixed: A problem with MinColor and MaxColor properties in TagCloud
Regards,
Marc
Fit2Page
Top achievements
Rank 2
Bronze
Iron
Iron
 answered on 20 Oct 2010
1 answer
110 views
I have a imagebutton that has a tooltip attached to it. I want the tooltip to show when the imagebutton is pressed "Which it does" However I also have server side codebehind that needs to fire on the click event but the tooltip stops it from firing is there a way to make the radtooltip show and have the codebehind fire.
Thanks for any help on this
Cori
Top achievements
Rank 2
 answered on 20 Oct 2010
1 answer
57 views
Hi,

We are using the Rad Ajax Manager in the Master Page, Ajax Proxy in the Content Page and one More Ajax Proxy control in the User Control.  We the grid edit form, it reloads the screen each time.  You can check the screnario in the below application.didnt used the Session object to retrieve the data. When we open

http://test.aptisys.com/UOMSetup.aspx

Where as in your example demos of using the webuser control in the grid. It is quite faster in opening  the edit form and there is no reloading of the page. When we check with the firebug, we found that in your example demos the page is faster on opening the edit form not reloading the page. Is it because of the session object that was faster in your example? If we include the session for caching, does it takes large amount of data in the cache, does it causes any performance problems? Could you please send example program with RadAjax Manager in the master page, Ajax Proxy in the Content Page with the grid and one more ajax Proxy in the Web User control for the edit form with the same performance as your demo example as mentioned in the URL example? 

http://demos.telerik.com/aspnet-ajax/grid/examples/dataediting/usercontroleditform/defaultcs.aspx

Thanks & Regards


Pavlina
Telerik team
 answered on 20 Oct 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
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
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?