Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
227 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
229 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
113 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
303 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
294 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
77 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
106 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
552 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
0 answers
131 views
Hi,

On the system if antivirus is running, most of the time files are not getting uploaded and getting failed.

Please advise the solution.

-Sanjivani
Sanjivani
Top achievements
Rank 1
 asked on 27 Jan 2011
1 answer
197 views
I'm trying to re-create a live site from a client's mock up and it requires the tabs and the tab text to be vertical but I don't seem to be able to flip the tab strip to do this and I was wondering if I was trying to accomplish something that can't be done.

I've been able to get the tabs to orient vertically but the text still reads horizontally.
Shinu
Top achievements
Rank 2
 answered on 27 Jan 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?