Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
101 views
Hi, I used the version RadControls For ASP.NET Q3 2007, however now make an update to RadControls is ASPNET AJAX Q2 2008, my project is not running normally, this presents several errors of inconsistency, I have to redo my entire project ?
Silderado
Top achievements
Rank 1
 answered on 13 Oct 2008
1 answer
125 views
I'm running RadEditor 4.3.2 in WSS3.0 to edit wiki/list items.

If I try to set some basic properties for a table or cells, such as a border, background color, or font size, etc. those changes are not preserved in the Sharepoint listitem when I view it.

Changes outside of tables seem to be fine.

What's the deal here?
George
Telerik team
 answered on 13 Oct 2008
1 answer
125 views
(I first posted this in the wrong forum, so I'm reposting it here.)

We're using the MOSSLinkManager in the RadEditor. Unfortunately, the Upload button only uploads files to the root of the document library, not to folders under the root. Since there doesn't seem to be a way to fix that, we'd like to remove the Upload button (or at least disable it). Is there a way to do that?

thank you
George
Telerik team
 answered on 13 Oct 2008
1 answer
121 views
Hi. Is there any way to use ChartTelerik in a web application without using session?

Tanks
Giuseppe
Telerik team
 answered on 13 Oct 2008
1 answer
58 views
Hi. Is there any way to use ChartTelerik in a web application without using session?

Tanks
Giuseppe
Telerik team
 answered on 13 Oct 2008
7 answers
206 views
Hello,
in my project I have one container that can host several controls but only one is visible at a time.

If all the controls in the container are not visible a blank line persist. This only happens in IE.

It seems to me that the Panel added by the manager adds a blank line that the IE renders.

Best regards.

Here is an example illustrating the problem.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> 
<%@ Register Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" TagPrefix="telerik" %> 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">  
<head runat="server">  
    <title>Untitled Page</title> 
</head> 
<body> 
    <script type="text/javascript">  
        function ResponseEnd()  
        {  
              
        }  
    </script> 
    <form id="form1" runat="server">  
        <asp:ScriptManager ID="ScriptManager1" runat="server" /> 
        <telerik:RadAjaxManager ID="RadAjaxManager" runat="server" ClientEvents-OnResponseEnd="ResponseEnd()" /> 
        <div id="MasterDiv" style="height: 200px; width: 200px; border: solid 2px black;">  
            <div id="Div1" runat="server" visible="true" style="width: 200px; height: 200px; background-color: Gray;">  
            </div> 
            <div id="Div2" runat="server" visible="false" style="width: 200px; height: 200px; background-color: Teal;">  
            </div> 
        </div> 
        <asp:Button ID="btn" OnClick="btn_OnClick" runat="server" Text="Toggle Panel" /> 
    </form> 
</body> 
</html> 
using System;  
using System.Data;  
using System.Configuration;  
using System.Web;  
using System.Web.Security;  
using System.Web.UI;  
using System.Web.UI.WebControls;  
using System.Web.UI.WebControls.WebParts;  
using System.Web.UI.HtmlControls;  
 
public partial class _Default : System.Web.UI.Page   
{  
    protected void Page_Load(object sender, EventArgs e)  
    {  
        RadAjaxManager.AjaxSettings.AddAjaxSetting(btn, Div1);  
        RadAjaxManager.AjaxSettings.AddAjaxSetting(btn, Div2);  
    }  
 
    protected void btn_OnClick(Object sender, EventArgs e)  
    {  
        if (Div2.Visible)  
        {  
            Div2.Visible = false;  
            Div1.Visible = true;  
        }  
        else  
        {  
            Div1.Visible = false;  
            Div2.Visible = true;  
        }  
    }  
Missing User
 answered on 13 Oct 2008
1 answer
97 views
I am using RadEditorMOSS control in MOSS application. Can anybody please help me in configuring spell checker in it ?

Thanks in advance,
Mehul
George
Telerik team
 answered on 13 Oct 2008
1 answer
93 views
Hi everyone,
I have copied the code from here http://www.telerik.com/help/aspnet-ajax/upload_raduploadaddinginformation.html and the extra field is been added and I can see the value on postback serverside. However my InitialFileInputsCount is been changed from 4 to 2 and I dont know why.

Can anyone see what is wrong?

Here is my code.
    <telerik:RadUpload ID="RadUpload1" Runat="server" InitialFileInputsCount="4" MaxFileInputsCount="4"   
    OnClientAdded="OnClientAddedHandler" 
 ControlObjectsVisibility="None"  > 
 <script type="text/javascript">  
     var numberOfCustomFields = 0;  
     function OnClientAddedHandler(sender, eventArgs) {  
         var inputRow = eventArgs.get_row();  
         var uList = inputRow.parentNode;  
         var count = 0;  
 
         // add a new row for a Title field  
         newRow = document.createElement("li");  
         count++;  
         uList.insertBefore(newRow, inputRow);  
         var label = document.createElement("span");  
         label.innerHTML = "Name ";  
         label.style.fontSize = 12;  
         input = document.createElement("input");  
         input.type = "text";  
         input.id = input.name = sender.getID("ImageName");  
         newRow.appendChild(label);  
         newRow.appendChild(input);  
 
         //add a File label in front of the file input  
         var fileInputSpan = inputRow.getElementsByTagName("span")[0];  
         label = document.createElement("span");  
         label.innerHTML = "File ";  
         label.style.fontSize = 12;  
         inputRow.insertBefore(label, fileInputSpan);  
         numberOfCustomFields = count;  
     }  
 
</script> 

Thank you
Veselin Vasilev
Telerik team
 answered on 13 Oct 2008
4 answers
221 views
Hello Friends,

i am Created RadGrid Dynamically........
Added Edit Column Runtime It Work Fine for Below Code.
But When i am change GridButtonColumnType to ImageButton
Edit From not Working Means grid not open in Edit Mode....
have a Look at this and please provide is possible solution With Example.




GridEditCommandColumn col = new GridEditCommandColumn();
            RadGridRow.MasterTableView.Columns.Add(col);
            //   col.ButtonType = GridButtonColumnType.ImageButton;
       
            col.HeaderStyle.HorizontalAlign = HorizontalAlign.Center;
            col.ItemStyle.VerticalAlign = VerticalAlign.Middle;
            col.CancelText = "Cancel";
            col.EditText = "Edit";
            col.UpdateText = "Update";
            col.ItemStyle.HorizontalAlign = HorizontalAlign.Center;

Thanks in Advance......

Following Error message Appears When Edit GridButtonColumnType changed to  ImageButton....

Error: [Exception... "'Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500' when calling method: [nsIDOMEventListener::handleEvent]"  nsresult: "0x8057001c (NS_ERROR_XPC_JS_THREW_JS_OBJECT)"  location: "<unknown>"  data: no]



vinod
Top achievements
Rank 1
 answered on 13 Oct 2008
1 answer
137 views
How do you call a usercontrol as a RAD Tooltip on every RAD Tree Node? I have to pass the RAD Tree Node value too, to the usercontrol.
Svetlina Anati
Telerik team
 answered on 13 Oct 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?