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

Hi,

Telerik features in our application have not been upgraded since the launch of the system (2003), and our users have cited that these functions are not user friendly and lack functionality in comparison to features available in Word.
  - RadEditor Version = 5.6.4.0
  - RadSpell.dll Version = 2.6.1.0

As we upgrade our applicaction to .net Framework 3.5, I am performing feasibility study of updating to see if the following items could be resolved ot added.

Our Issues:

  1.     Bullet function is not working properly in that “round” bullets are displayed but “dashes” print out. 
  2.     Users also found that Spell-check picked up too broad of a range of possible hits, and although it appeared that we once had the ability to customize the spell-check dictionary, since the .net upgrade this ability appears to be no longer accessible.
  3.     Users have also expressed an interest in being able to access a highlight feature. Is it possible to access this feature within telerik and if this feature can be selectively turned on/off on the toolbar associated to the various text boxes.

I would appreciate your help on the above questions. Would you also please let me know which version of Telerix is needed to be downloaded to gain 3 above functionalities. Is theer any othe components is needed?Also could you please let me know if I need to change the code or not?


Thank you inadvance for your help.

 

Rumen
Telerik team
 answered on 27 Jan 2011
10 answers
325 views
Hi,

I have an idea in my head about a grid layout but I need assistance in figuring out how I can implement that. This is regarding a column called status.

The status dropdown would have fixed values (say Activate, Deactivate, Suspended etc. and the values will not be full text but char like A, D, S). When the grid is databound, the status dropdown value will be selected to the record's status. The user will have the option to change the status of the record by choosing another value in the dropdown. On change, data will be posted back and database will be updated with the new status for the record.

On top, I have the grid enabled for filtering. For this column, the filtering will have the dropdown and when user chooses a particular status, the grid should filter the records to only the records with that status.

I'm not sure how I can do this because I'm just starting on RadGrid. Can anyone help me figure out how to make this possible? I would really appreciate it.

Kind Regards,
JB
Tsvetina
Telerik team
 answered on 27 Jan 2011
3 answers
186 views
Hi,

first of all i would like to thank you guys for this very nice component.
I remember how i spent at least 3 months to implement a Self-referencing Hierarchy radgrid
with inline edit. It was really though and almost a nightmare.
When i saw this new component, i was like, omg finally they did it!
Well almost, because a lot of feature are still missing now...

I know the features will come later in the next release hopefully, probably between february and march,
but i can not wait and have to launch our website already in february.

Well, i have a treelist with 2 columns, a boundcolumn and a templatecolumn.
The templatecolumn is a radnumerictextbox.
Now, i can enter some value in each radnumerictextbox inside the templatecolumn.
So far so good.
Now my problem: how to retrieve all these value and save them when the user clicks
on a save button?

Please tell me it's possible riht now or you have maybe already done a lab for that or
can attach some demo example.

I tried again with Self-referencing Hierarchy radgrid but it's "buggy" and i don't want to mess
again with all the issues i had last time.

Thank you very much for your help and assistance.
Lucien
Radoslav
Telerik team
 answered on 27 Jan 2011
2 answers
188 views
Hi All,
        I am using RadCombobox and I have to get selectedValue of radComboBox using frm.Page.Request["radCmbID"].

Previously
    The request object with asp:DropDown  is giving correct output i.e. it gives selectedValue of asp:DropDown.

eg- string defaultval = FRM.Page.Request["ASPDropID_drp"];    --- gives selectedValue.

But above code is fail for RadCombobox, If I used same code for radCombo it will give "selectedText".
So how can I get "selectedValue" of RadCombobox using "Request[]" Object ??????

Its very urgent...
waiting for reply...
Shinu
Top achievements
Rank 2
 answered on 27 Jan 2011
1 answer
91 views
Hi,

I was just wondering if it is possible to have a border over Line Chart series ? 

I can set the appearance for Line and it modifies the Line based on Solid, Dash, Dot etc fills... Can I have a Solid line with a border defined with a different color ?
Evgenia
Telerik team
 answered on 27 Jan 2011
1 answer
283 views
I installed Telerik.Web.UI_2010_3_1317_Trial and Telerik_AJAK_controls_2010_3_1317_for_SharePoint_2010_Trial. I have a Visual Web Part Project with a reference to Telerik.Web.UI for .NET 3.5 and some controls. When I debug this project and I try to add the web part to a page, I get this parse error:

Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. The system cannot find the file specified.
Line 9:  <%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
I've checked Windows/assembly for the dll's and they're present. I was also getting this error before I ran the SP installer.
Georgi Tunev
Telerik team
 answered on 27 Jan 2011
2 answers
237 views
When you have a asp.net textbox control defined in RadInputManager as TextBoxSetting and

If you disable the textbox control client-side prior to postback, the value is lost on postback.

Consider the following code:
<%@ Page Language="C#" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 
<script runat="server">
 
    protected void btnGo_Click(object sender, EventArgs e)
    {
        Response.Write(tbPayeeLine1.Text);
    }
</script>
 
<head id="Head1" runat="server">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>RadControls for ASP.NET AJAX</title>
      
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
  
<telerik:RadInputManager ID="RadInputManager1" runat="server">
 
    <telerik:TextBoxSetting BehaviorID="PayeeLine1Behavior" EmptyMessage="Enter Payee / Beneficiary Name Here" ErrorMessage="Payee/Beneficiary Required"
        Validation-IsRequired="true" Validation-ValidationGroup="ValGrpPayeeInfo">
        <TargetControls>
            <telerik:TargetInput ControlID="tbPayeeLine1" />
        </TargetControls>
    </telerik:TextBoxSetting>
    
</telerik:RadInputManager>
 
<asp:TextBox ID="tbPayeeLine1" name="payee" runat="server" MaxLength="33" Width="300px" />
<asp:Button ID="btnDisable" runat="server" Text="Disable" OnClientClick="DisableTextBox();return false;"></asp:Button>
<asp:Button ID="btnGo" runat="server" Text="Go" onclick="btnGo_Click"></asp:Button>
 
<script type="text/javascript">
 
    function DisableTextBox() {
        debugger;
        var tb = $find("<%= RadInputManager1.ClientID %>").get_targetInput("<%= tbPayeeLine1.ClientID %>");
        //tb.disable()
        alert(tb.get_value());
        document.getElementById('<%= tbPayeeLine1.ClientID%>').disabled = true;
    }
  
</script>
  
</form>
</body>
</html>

Pavel
Telerik team
 answered on 27 Jan 2011
3 answers
51 views
Howdy,

I have the MOSSRadEditor installed in my WSS3 environment, so far so good. Is there a way to specify where all uploaded images can be saved to? I don't want to give the user the option to upload them anywhere, just to a folder I specify.

Thanks!
Stanimir
Telerik team
 answered on 27 Jan 2011
1 answer
85 views
HelloTelerik Team,

I am using 2009.1.527.20 Telerik version of AJAX controls. I have used a RadWindow which on moving displays a white screen. However i was able to resolve the issue by implementing the resolution mentioned in one of the posts http://www.telerik.com/community/forums/aspnet-ajax/splitter/white-screen-when-moving-radwindow.aspx. After providing the resolution, i could see that in IE 7, the movement of RadWindow with mouse is not as smooth as in Firefox , also we can see flickering in the background sometimes when we move quickly, which is not present in Firefox. Please advice.

This is the code i have used to display the RadWindow.

   var oWnd = radopen("ClientUpload.aspx" , null);
   oWnd.setSize(500,350);
   oWnd.set_modal(true);         
   oWnd.set_behaviors(Telerik.Web.UI.WindowBehaviors.Move +
   Telerik.Web.UI.WindowBehaviors.Close  );

I have implemented OnClientDragStart event handler as mentioned in the above posts.

Thanks,
Divya
Svetlina Anati
Telerik team
 answered on 27 Jan 2011
3 answers
515 views
Hi,

I have created a RadWindow in a user buttonClick event:
Protected Sub Button3_Click(ByVal sender As Object, ByVal e As System.EventArgs)
Dim newWindow As Telerik.Web.UI.RadWindow = New Telerik.Web.UI.RadWindow()
        Dim hyper As String
        hyper = "GeoCode.aspx?field1=" + Street + "&field2=" + City + "&field3=" + Zip
        newWindow.NavigateUrl = hyper
        newWindow.Top = Unit.Pixel(22)
        newWindow.Left = Unit.Pixel(0)
        newWindow.Width = 300
        newWindow.Height = 800
        form1.Controls.Add(newWindow)
        newWindow.VisibleOnPageLoad = True
 
End Sub
the Url is working properly and the page is loading properly, However if i try and use newWindow.Visible = true rather than VisibleOnPageLoad = true the window does not show. my problem resides in the fact that even after I use the close event in the popup windows page the popup is loaded again once the page is loaded because of the VisibleOnPageLoad = true.

I have tried using:
function CloseFunction()
         {
          var oWnd = GetRadWindow();
           oWnd.Close();
           oWnd.VisibleOnPageLoad = false;
           oWnd.BrowserWindow.location.reload(); 
            
         
         
         }
in the other page when closing the window however it does not work. Any suggestions would be greatly appreciated

Thank you,
Georgi Tunev
Telerik team
 answered on 27 Jan 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?