Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
1.1K+ views
Hi,

I have installed RAD controls Q2 2008 release suit.How can i know version number of the ontrols. I saw so many version listed out like 2008.2.826,2008.2.723 etc. Actually i want to raise a support ticket with appropriate version.

Please help me to know my controls's version number.

Thanks in advance.

Nataraj
Ivan Danchev
Telerik team
 answered on 27 Aug 2015
10 answers
109 views

Hi

When I try to drag a node in a diagram, the whole diagram is being dragged.

I am using Google chrome version 41.0.2272.118 m.

This does not happen in IE10 nor in FF.

Vessy
Telerik team
 answered on 27 Aug 2015
0 answers
118 views

 i am having problem to save file to FTP using RadAsyncUpload...  according to this control its is saving file to server first can i directly save this to FTP by changing TemporaryFolder  and TargetFolder to ftp destination with credentials. and is there another way to save file directly to FTP without saving it to server .. thanx in advance

 Note : MY FTP is on another server..and have username and password

Mohammad
Top achievements
Rank 1
 asked on 27 Aug 2015
37 answers
602 views
I could not find where we use to make suggestions about new controls, but I would like to see plans for an Org Chart control.
I am currently using this one:
http://www.smartwebcontrols.com/SampleCode/SmartChartLite/OrgChartwithBackground.aspx
But it would be cool to see you guys develop one to go with your incredible suite. I have used the telerik controls since you guys started, but this would be a great edition.
If not, does anyone have a suggestion about other "Affordable" Org Chart controls?
Thanks,
~bg
Eyup
Telerik team
 answered on 27 Aug 2015
1 answer
123 views

How could I set focus on the Radrating after client-side validation like:

 

http://docs.telerik.com/devtools/aspnet-ajax/controls/rating/how-to/radrating-with-customvalidatorplease help.

 

Marc

Slav
Telerik team
 answered on 27 Aug 2015
4 answers
158 views

Hi,

We have a problem with the menu when located near the bottom of pages.

Often there is a scroll (EnableAutoScroll is True for other reasons!), despite lots of space above. It doesn't expand up instead of down seems to be the main problem.

In the following example:

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="menu.aspx.vb" Inherits="TestaTredjepartWeb.menu" %>
 
<!DOCTYPE html>
 
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:ScriptManager ID="s" runat="server">
        </asp:ScriptManager>
        <div>
            <table>
                <tr>
                    <td style="vertical-align: top; padding-bottom: 0px">
                        <div style="height: 200px; background-color: blue">
                        </div>
                        <div style="padding-bottom: 60px; background-color: red">
                            <telerik:RadMenu ID="menu" runat="server" RenderMode="Lightweight" ClickToOpen="true" ExpandDelay="0" EnableAutoScroll="true" OnClientItemOpening="function(sender, args){args.get_item()._defaultScrollSize = 0;}" >
                                <Items>
                                    <telerik:RadMenuItem Text="Test1" Value="item1">
                                        <Items>
                                            <telerik:RadMenuItem Text="1"></telerik:RadMenuItem>
                                            <telerik:RadMenuItem Text="2"></telerik:RadMenuItem>
                                            <telerik:RadMenuItem Text="3"></telerik:RadMenuItem>
                                            <telerik:RadMenuItem Text="4"></telerik:RadMenuItem>
                                        </Items>
                                    </telerik:RadMenuItem>
                                </Items>
                            </telerik:RadMenu>
                        </div>
                    </td>
                </tr>
            </table>
        </div>
    </form>
</body>
</html>

When resizing the browser window near the edge of the red area, the menu expands down with a scroll despite the large blue area above where it could have expanded up!

If making the window a little bit smaller than the red area, it works as expected and expands up!

If making the window a little bit larger than the red area, it also works as expected and expands up!

If making the window much larger than the red area, it also works as expected and expands down (without scroll)!

 

Regards
Andreas

Magdalena
Telerik team
 answered on 27 Aug 2015
30 answers
1.9K+ views
Hello,

Our client Bryan Boudreau has been kind enough to send us a tool, which can take a ZIP file containing a RadControls skin (e.g. one generated by the Visual Style Builder) and create an assembly with an embedded version of this skin. The skin can be registered with RadStyleSheetManager, as demonstrated in this code library example:

Including custom StyleSheets as WebResources to RadStyleSheetManager

For instance:

<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
    <StyleSheets>
        <telerik:StyleSheetReference Assembly="TelerikSkins" Name="TelerikSkins.Office2007.Calendar.Office2007.css" />
    </StyleSheets>
</telerik:RadStyleSheetManager>

TelerikSkins is the namespace entered in the third field of the tool.

Thanks, Bryan!

Regards,
the Telerik team



Konstantin Dikov
Telerik team
 answered on 27 Aug 2015
2 answers
127 views

Usually for validation, it involves allowed file types but just want to ask how to validate file size only? Thanks.

I also noticed when setting the error message, first it's like checking if message is about file type then else it becomes error regarding file size as show below:

function getErrorMessage(sender, args) {
        var fileExtention = args.get_fileName().substring(args.get_fileName().lastIndexOf('.') + 1, args.get_fileName().length);
        if (args.get_fileName().lastIndexOf('.') != -1) {//this checks if the extension is correct
            if (sender.get_allowedFileExtensions().indexOf(fileExtention) == -1) {
                return ("This file type is not supported.");
            }
            else {
                return ("This file exceeds the maximum allowed size of 500 KB.");
            }
        }
        else {
            return ("not correct extension.");
        }
    }

Jayzle
Top achievements
Rank 1
 answered on 27 Aug 2015
5 answers
1.5K+ views
I am trying to set the mindate property of the raddatepicker in the aspx file:

<telerik:RadDatePicker ID="RadDateEffectiveDate" runat="server"
Culture="English (United States)"  MinDate="<%# DateTime.Today.Date %>">
</telerik:RadDatePicker>

but didn't work, any suggestions??

I actually ended setting the mindate in the code behind but I thought that I could do it this way
RadDateEffectiveDate.MinDate = DateTime.Today
shubhangi
Top achievements
Rank 1
 answered on 27 Aug 2015
1 answer
311 views

Hello,

I am trying to create a RadGrid in Batch edit mode. In each row, I have a GridbuttonColumn that opens a RadWindow using JavaScript function.

Data in the popup must be savec in the datasource of the RadGrid as they are represented by hidden columns. To do this, the save button in the popup must update the datasource.

 What I need to do here is to save changes made on the RadGrid to the datasource each time I click on the GridButtonColumn.

 Thanks,

Abbas

Eyup
Telerik team
 answered on 27 Aug 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?