Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
65 views
When the edit button is clicked in the master table view, the row does not display the edit form. The grid is build entirely in the code-behind, I'm using InPlace editing, and the grid has 1 detail table. In the ItemDataBound delegate, the row is in edit mode. In the DetailTableDataBind I'm checking the DetailTableView.ParentItem.Edit and it is also true. Any suggestions?

Rafaga2k
Top achievements
Rank 1
 answered on 16 Dec 2010
4 answers
118 views
Hi all,

As you can see on the attached images - there are two appointments between 8 am and 10 am.
The first appointment starts at 8.30, but visually shown as starting at 8.00.

The second appointment has time 9:25 - 10:10, but telerik visually shows this appointment ending well before 10.00 am mark.

So it seems like the left portion with time has nothing to do with the appointments:( 


Thank you.
Stephanie
Top achievements
Rank 1
 answered on 16 Dec 2010
3 answers
70 views
Hi there,

I noticed a strange issue with the combo box using a tree view.  It seems that if I click the drop down arrow on the combo box and try and select an item it will not select until I go to the item and select it a second time.

If however I click midway through the combo box and select an item it will select right away.

Have you seen this behaviour or has a workaround been suggested?
Dimitar Terziev
Telerik team
 answered on 16 Dec 2010
3 answers
295 views
Hi:

I have a simple example (I used code infront for ease of showing this example and pasting the code).
<%@ Page Language="VB" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
        RadScriptManager.RegisterStartupScript(Me, Me.GetType, "openShowRadToolTip1", "ShowMyRadToolTip1();", True)
    End Sub
</script>
<head runat="server"><title>Tool tip js test</title></head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" Runat="server">
        </telerik:RadScriptManager>
        <asp:Button ID="Button1" runat="server" Text="Button" />
        <telerik:RadToolTip ID="RadToolTip1" runat="server" IsClientID="true" >
            I am here!
        </telerik:RadToolTip>
        <script type="text/javascript">
            //<![CDATA[
            function ShowMyRadToolTip1() {
                var radName = '<%= RadToolTip1.ClientID %>';
                var rad_ToolTip = $find(radName);
                if (rad_ToolTip == null) {
                    alert("get element by id of:" + radName);
                    rad_ToolTip = document.getElementById(radName);
                }
                rad_ToolTip.show();
            };
            //]]>
        </script>
    </form>
</body>
</html>
I have a tool-tip that I am trying to to show via javascript, but I am getting the following error:
 Microsoft JScript runtime error: Object doesn't support this property or method
I believe that getElementById ultimately finds the div tag (not the $find), but the show method is not understood.
Phil
Svetlina Anati
Telerik team
 answered on 16 Dec 2010
8 answers
132 views
I am using the ToolTip with Web Service (http://demos.telerik.com/aspnet-ajax/tooltip/examples/webservice/defaultcs.aspx)
for my Web Application (Visual Studio 2010 .NET 4.0 Framework  w / Telerik Rad Controls for ASP.NET AJAX Q2 2010 NET 40)

I am replicating the exact same functionality as in the Example above with a repeater control, but when I mouse over the Repeater the tool tips shows the me information about another image within the tooltip.

For Example
Mouse Over Image 4 = Tooltip shows me information about Image 8

The only repeater item that works consistently is the first repeater item that is rendered

***It seems that the when I mouse over the Repeater image ToolTipManager calls the webservice method multiple times

I have isolated everything that could cause a problem. I have checked my webservice call to the database and it is working fine.
Looks like some issue with the control not sure what is happening here.

Attached is the code
Svetlina Anati
Telerik team
 answered on 16 Dec 2010
1 answer
126 views
Hi,

I am using RadEditor inside the usercontrol which is inside the div tags, when I click the toggle screen mode to full screen view it overlays, The application has top Nav, left nav so it gets overlaid, If I don't use topnav and left nav , it just works perfect. I tried the solution provided in Knowledge Base but still the issue occur.

Thanks
-Pari
Rumen
Telerik team
 answered on 16 Dec 2010
1 answer
103 views

We have an update panel that should be populating a radcombobox based on the selected value from a lookup screen.

This worked prior to .net 4.0. When we select the lookup in .net 4.0, the following error occurs in what looks to be a Telerik script on the below line of code. This also completely disables the radcombobox after the error!

Microsoft JScript runtime Error: Object doesn't support this property or method.

if

(this._disposeChildElements&&typeof(Sys.WebForms)!="undefined"){Sys.WebForms.PageRequestManager.getInstance()._destroyTree(c)

I believe this is in Telerik.Web.UI.dll and core.js.

I have downloaded telerik version 2010.3.1215.0. Once this is installed, what do I need to do to ensure the Bin40 version is used?

Telerik.Web.UI.dll exists in both Bin35 and Bin40.
Seems that there is an issue with the way the 4.0 UpdatePanel is interacting with the Telerik drop down.

How to resolve this?

 

 

 

 

 

 

 

 

 

Greg
Top achievements
Rank 1
 answered on 16 Dec 2010
1 answer
124 views
We have an update panel that should be populating a radcombobox based on the selected value from a lookup screen.

This worked prior to .net 4.0. When we select the lookup in .net 4.0, the following error occurs in what looks to be a Telerik script on the below line of code. This also completely disables the radcombobox after the error!

Microsoft JScript runtime Error: Object doesn't support this property or method.

if

(this._disposeChildElements&&typeof(Sys.WebForms)!="undefined"){Sys.WebForms.PageRequestManager.getInstance()._destroyTree(c)

I believe this is in Telerik.Web.UI.dll and core.js.

I have downloaded telerik version 2010.3.1215.0. Once this is installed, what do I need to do to ensure the Bin40 version is used?

 

Telerik.Web.UI.dll exists in both Bin35 and Bin40.
Seems that there is an issue with the way the 4.0 UpdatePanel is interacting with the Telerik drop down.

 

 

 


How to resolve this?

 

Greg
Top achievements
Rank 1
 answered on 16 Dec 2010
8 answers
369 views
I have been attempting to use the new RadComboBox control with a custom ItemTemplate similar to the example that you provide.  I also am trying to get it to add additional results using a WebService (and potentially a WCF Service) to provide data.

I have a sample that I can post.  (Please email me to get the zip file to append).

Thanks,
Andre'
Simon
Telerik team
 answered on 16 Dec 2010
2 answers
82 views
I need a Panel bar with item´s height arround 30px (mainly because then icons used). To achieve this I have declared the following css:
.RadPanelBar .rpText,  
.RadPanelBar .rpLink,
.RadPanelBar .rpSelected,
.rpLevel1 li
{  
    height: 30px!important;   
    display: block!important;   
    padding-bottom: 0px!important;  
    line-height:30px!important;  
    min-height:30px!important;
}
So far, so good.

The problem appears when an item is selected. The background bitmap do not covers all the item (see atached image).

How can I figure out this situation?

Regards


Audreyn Justus
Top achievements
Rank 1
 answered on 16 Dec 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?