Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
84 views
My boss would like to place the month and year navigation buttons on the top left conner of scheduler without the datepicker as shown in the attached image, and have tooltips to show the description of the buttons when mouseover the "<<", "<". ">" and ">>" buttons, would you please give me some hints about how to do it?

Thanks !!!
Sun Lai
Peter
Telerik team
 answered on 26 Jun 2012
1 answer
120 views
If you have a css attribute of 

body { height: 100% }

then the RadEditor will grow with each keypress if you set AutoResizeHeight=true. I put this in my page header as a temp fix:

body { height: auto !important; }

I'd prefer to be more selective than the entire body and I've tried .RadEditor and iframe, as well as a few other css selectors. Is there a better selector or an alternate fix.

Note that this issue is in Firefox 13. Internet Explorer 9 does not have this problem. Q3 2011 SP1 version of ASP.NET Ajax.
Rumen
Telerik team
 answered on 26 Jun 2012
1 answer
91 views
Hai all,

I have a radgrid. I need to remove the grid default column filters when the grid is in Edit mode. How can I do that?

Thanks in advance.
Shinu
Top achievements
Rank 2
 answered on 26 Jun 2012
2 answers
133 views
Ok I'm kinda new to the Telerik tools so hope this doesn't sound too strange...

I created a user control with the RadWindowManager and a jscript function to open the window as below:

<%@ Control Language="VB" AutoEventWireup="false" CodeFile="RadWindowManager.ascx.vb" Inherits="Controls_RadWindowManager" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<telerik:RadWindowManager 
    runat="server" 
    RestrictionZoneID="offsetElement" 
    EnableShadow="true" 
    ShowOnTopWhenMaximized="false" 
    VisibleStatusbar="false"
    Behaviors="Close, Move, Resize, Maximize" 
    Opacity="99" 
    Height="400" 
    Width="400" >
</telerik:RadWindowManager>
 
<script type="text/javascript">
    function OpenRadWindow(urltitlewidthheightmodalonBeforeCloseEventonCloseEvent) {
        if (url == null) { url = "" }
        if (title == null) { title = "" }
        if (width == null) { width = 400 }
        if (height == null) { height = 400 }
        if (modal == null) { modal = true }
 
        var wnd = window.radopen(urlnull);
        wnd.SetTitle(title);
        wnd.setSize(widthheight);
        wnd.set_modal(modal);
        if (onBeforeCloseEvent != null) {
            wnd.add_beforeClose(onBeforeCloseEvent);
        }
        if (onCloseEvent != null) {
            wnd.add_onClose(onCloseEvent);
        }
 
        return false;
    }
</script>

The idea was to not have to declare it all over the place as we have many popups in our system and some require different variables than others.

Anyways Part 2:

In one of my pages I have a popup that requires some inputs and such and needs to refresh the main page when it closes.

<%@ Register Src="~/Controls/RadWindowManager.ascx" TagName="RadWindowManager" TagPrefix="uc3" %>
<uc3:RadWindowManager ID="RadWindowManager" runat="server" />
function OpenAddProduct() {  
            var url = <%= """" & ResolveUrl("~/Levels/Products.Aspx?Popup=1") & """" %>;
            OpenRadWindow(url"Manage Products"765500truenullalert("This is supposed to be a close event..."));
        }

Obviously what I am expecting is when the window is closed an alert to popup with that message, however what I am getting is that as soon as the window opens it is firing the OnClose event the same goes for the OnBeforeClose as well.

Am I just doing something wrong here declaring the window or is there more to it???
John
Top achievements
Rank 1
 answered on 26 Jun 2012
1 answer
148 views
Hello,

In our app, we allow users to select among default Telerik skins. We now created a custom Skin, wrapped up in a .dll, and we want that skin to be available to the users as well. So, User 1 will be using the Telerik skin Sunset, whereas User 2 will be using our Custom skin.

However, I could not find a way to register our skin dll and use it side-by-side with the default skins.

How can we implement this scenario?

Best regards.
Galin
Telerik team
 answered on 26 Jun 2012
0 answers
50 views
Hello friends,

I want to set up my security system to call out wireless to the monitoring center, at the moment it is calling out on land-line which I want to disconnect, I know I need a voip router connected to my security system, but how does the computer or modem receive the signal and how does it dial out?

Best regards
Steven Dilley
Steven
Top achievements
Rank 1
 asked on 26 Jun 2012
15 answers
291 views
Hi Tsvetina,

I've been trying to reply to you on the following topic

How to display background colour on RadNumericTextBox and RadGrid cell after a value is entered?

but I always got a server error.

Regards,
Herman
Vasil
Telerik team
 answered on 26 Jun 2012
1 answer
196 views
Hello,

I am using notification control to display some message to end user.

normally, it displays how many request you have, which is done through database query

now if there are some requests then it must popup

but i need if there is no request then notification should not popup

how can i do so,

Regards

Marin Bratanov
Telerik team
 answered on 26 Jun 2012
1 answer
133 views
I can't seem to find anywhere that this is explained - here is what I am looking to do:

I have a RadWindowManager on my Page
I want to call a RadWindow that may have a large grid in it
The RadWindow is set to AutoSize and if the Grid is longer than the parent browser window, I would like:
1. The RadWindow to show it's full height, without scrollbars
2. The Parent window would now scroll up and down to allow you to see the entire RadWindow content

Is this possible?
Marin Bratanov
Telerik team
 answered on 26 Jun 2012
5 answers
166 views
I'm trying to set the IconUrl for a RadWindow from a .skin file, thusly:

<telerik:RadWindow runat="server" SkinID="AddPersonNoteWindow"
    IconUrl="Images/Icons/note_add.png" />

The value is applying, however it's coming out incorrect:

background-image: url("//App_Themes/Default/Images/Icons/note_add.png")

The double forward slashes near the beginning cause the icon to not work.

What's up with this?

[EDIT]

Seems unrelated to the Skin file. When I set the icon without the skin file, I get the same issue.

I think the Telerik code should probably not generate these double slashes.
Marin Bratanov
Telerik team
 answered on 26 Jun 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?