Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
167 views
I have a modal window that I am firing on an icon click. When the window loads, it's low and right of where it should be. If you close the window and select the icon again, the window appears in the correct position. Any clue what is going on?

Marin Bratanov
Telerik team
 answered on 04 May 2012
1 answer
278 views
Hi Team,

Can i have a line-break in RadToolTip to work with line-feed "\n" instaed of "<br/>"
Marin Bratanov
Telerik team
 answered on 04 May 2012
1 answer
178 views
Thanks to the forums I have been able to create a RadWindow popup when a user mouses over a RadTreeView node. But the problem I am running into is that I don't want to constrain the user to the original items surface for the mouse out to close the popup, but want to allow the user to move the mouse within the popup window to do other actions then upon mouse out close.

Hence, I want to constrain the mouse out to the new window and not the original small node surface. But I have been unable to achieve that. Where should I put the mouse out code? Here is what I have tried, note that the windowpane variable is null and never attaches the alerts.

function HandleHoverStart(sender, eventArgs) {
    var node = eventArgs.get_node();
 
    if (node != null) {
        var pos = GetElementPosition(node.get_element());
 
        var oManager = GetRadWindowManager();
 
        var metaWindow = oManager.open(null, "DocumentMetaRadWindow");
 
        var windowPane = document.getElementById("RadWindowWrapperElement" + metaWindow.Id);
 
        if (windowPane != null) {
 
            windowPane.onmouseenter = function () { alert('RadWindow enter'); };
            windowPane.onmouseout = function () { alert('RadWindow out'); };
        }
 
        var X = pos.x;
        var Y = pos.y;
 
        metaWindow.MoveTo(X, Y + node.offsetHeight);
 
    }
}


Marin Bratanov
Telerik team
 answered on 04 May 2012
1 answer
162 views
As you know the RadComboBox has a property called 'ShowDropDownOnTextboxClick' which opens the dropdown when the textbox is clicked. Thing is, i use a combobox without allowing custom text (i configured it to be like a standard but styled asp.net dropdown). So i need the exact opposite of the feature above. I want the dropdown to open and close when the textbox is clicked depending on the current visibility of the dropdown. Before i'm extending the ComboBox to build this in myself i thought i'd post this here since theres probably more people experiencing this. Is there a way i could toggle the dropdown on textbox-click?

Thanks in advance,

Max
Dimitar Terziev
Telerik team
 answered on 04 May 2012
1 answer
70 views
Hi
How can we manipulate a rad upload inside a user control cause it return  UploadedFiles.count as 0. 
Thank you
Med
Top achievements
Rank 1
 answered on 04 May 2012
2 answers
144 views
Hi,

I have Radupload control in .ascx file some thing like this.

<tel:RadUpload ID="ruConsent" runat="server" AllowedFileExtensions="jpg,jpeg,png,gif,pdf,doc,docx,xls,xlsx"
                           ControlObjectsVisibility="None" Height="24px" MaxFileSize="10485760">
                       </tel:RadUpload>

On Submit button's Click event on code behind

i have written liek this:
if (ruConsent.UploadedFiles.Count > 0 && ruConsent.InvalidFiles.Count == 0)
{
// upload file
}
else
{
//Show error message that files are not valid
}

but i always ruConsent.UploadedFiles.Count remains 0. If i put it out side of RadAjaxPanel then it is working fine. But when kept inside it is not working. Any idea why ?
Med
Top achievements
Rank 1
 answered on 04 May 2012
1 answer
80 views
Hello,

Is it possible to customize the HTML tags written by RADEditor when a modification is made in the content (eg. adding comment, adding hyperlink, changing text to bold etc).  I need to modify the tags in order to add information about the user who is making the change.  This enables me to track changes in a document.

Thanks,
James
Rumen
Telerik team
 answered on 04 May 2012
1 answer
149 views
Hello
Is it possible  to set PromptChar for RadMaskedTextBox via javascript, something like

var Addr = $find(idAddr);

Addr._setPromptChar("_");

Thanks, Alex.

Princy
Top achievements
Rank 2
 answered on 04 May 2012
1 answer
156 views
what is the fastest way to remove nodes on the client side? I am using 
node.get_parent().get_nodes().removeAt(0)
to get this functionality, but it looks to take comparatively more time, like to remove 200 nodes it takes around 2-3 seconds. Is there any other efficient method/way to achieve this.
Plamen
Telerik team
 answered on 04 May 2012
1 answer
72 views
radtreeview has addNodesTo() method for faster adding a treenodecollection to the treeview. Do we have some simillar kind of method even to insert a treenodecollection to the treeview on the client side. Right now we can only insert one record at a time in the treeview, so is there some way to insert a collection of nodes to the treeview on the client side so that the output is fast.
Plamen
Telerik team
 answered on 04 May 2012
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?