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

How do we get a search text box in Menu using teleric controls ?
Atanas Korchev
Telerik team
 answered on 13 Mar 2009
1 answer
144 views

Hi,

I have a web page which has Dll control and is placed in a Object Tag. When I try to open a new window using the rad window the new window opens. When I try to move the mouse in and out of the modal window the screen flickers. When i try to move the modal window itself then it hides behind the control (dll) on the parent page and when i release the modal window it comes in the front. Hope I am able to convey my problem.


Page 1

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Untitled Page</title>
  
</head>
<body id="formViewerBody" style="background-color:#E5E8F1;">
<script language="javascript" type="text/javascript"> 
        function openWin()
        {
              var oWnd = radopen("FormsEmail.aspx", "formsEmailRadWindow");             
              oWnd.SetSize(480,450);
              oWnd.Center(); 
        }       
        function GetRadWindow() {   
                var oWindow = null;   
                if (window.radWindow) oWindow = window.radWindow; //Will work in Moz in all cases, including clasic dialog   
                else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow; //IE (and Moz az well)   
                return oWindow;   
            }       
            function Close() 
            {       
                GetRadWindow().Close();   
            }   

      
    </script>

    <form id="form1" runat="server">
       
<asp:ScriptManager ID="scriptManager" runat="server" AsyncPostBackTimeout="5000">
 <Scripts>
 <asp:ScriptReference Path="../includes/JavaScript/AJAXClientEvents.js" />
</Scripts>
</asp:ScriptManager>
       
<div >
<input type="button" id="Button1" value="Email" onclick="openWin()" />
<input type="button" id="Button2" value="Close" onclick="Close()" />
</div>

        <div style="text-align:center; background-color:#C0C0C0;">
                <object classid="../../ControlX.dll#ControlX.ControlNameSpace"
                    id="ControlViewer" width="950px" height="460px">
                </object>           
        </div>
              
        <rad:RadWindowManager ID="RadWindowManager1" ShowContentDuringLoad="true" VisibleStatusbar="false"
                    ReloadOnShow="true" runat="server" Modal="true" KeepInScreenBounds="true"                   
                    VisibleTitlebar="false"  BorderStyle="Solid" BorderColor="black" BorderWidth="1px"                   
                    >
            <Windows>
                <rad:RadWindow ID="formsEmailRadWindow" Modal="true" NavigateUrl="FormsEmail.aspx"
                    runat="server"  BorderStyle="Solid" BorderColor="black" BorderWidth="1px"
                                       
                    >
                </rad:RadWindow>
            </Windows>
        </rad:RadWindowManager>
     
    </form>
</body>
</html>


Page 2.
When the Email Page opens as a modal, it flickers when i try o move the mouse in and out of the modal page. When i try to move the modal window it goes behind the dll control and when i release it , the email page (which is the modal window) comes to the front.

Please guide.

Fiko
Telerik team
 answered on 13 Mar 2009
3 answers
148 views
when i debug the site on my developing machine, it runs fast and good. but when i copy the folder over to the server, it just runs extremely slow. do we have to install telerik in the server to make it the site loads faster? can you let me know please. Thank you very much
Paul
Telerik team
 answered on 13 Mar 2009
1 answer
111 views
Hi,

        Im trying to change the scheduler language by using RadScheduler1.Culture = CultureInfo.CurrentCulture,then my scheduler language got changed to the culture whatever my thread is holding.But the type of Views available in the ViewTabs language have not been changed.so i need the Views text should be changed or is there any other option of assigning our own text to the View Headers.

        Thanks
          Giri.
Veselin Vasilev
Telerik team
 answered on 13 Mar 2009
2 answers
176 views
Scenario:
Each tab corresponds to a certain user control, so all of the pageviews are dynamically loaded when the tab is clicked.  The page that contains the TabStrip has a navigation buttons and the Save/Cancel buttons.  The Save/Cancel buttons have the appropriate logic to to actually call into the user controls and save their data.  The navigation (Previous/Continue) buttons are used to navigate the TabStrip.

If there is data that hasn't been saved, and the user clicks a new tab, or one of the navigation buttons, a client side alert is shown and prompts the user to save, or lose their changes.  If the user clicks to save their data, the tab selecting client side function cancels the event and calls the Save button's server side event via __doPostBack.

Issue:
When the data is saved, and no error has occurred, I need to continue to the appropriate tab that was clicked, or the next sequential tab depending on the navigation button.  If an error has occurred, then the user should remain on that tab to fix any changes.

Is there a way to select a particular tab from my Button_Click server side event, if the save is successful?



Paul
Telerik team
 answered on 13 Mar 2009
1 answer
161 views
Hi there

We've started using the chart control, it works great however we have a requirement to put custom labels on the X-Axis.
Please take a look at this screenshot http://www.magnetism.co.nz/clients/telerik/telerik_chart.jpg

What we're trying to do is put "Month x" infront of the numbers
eg: Jan 1, Jan 2, Jan 3, Jan 4...etc

we're binding the chart to a custom List<T> object.

Can you please advice on how we can go about adding custom labels to the X-Axis
Giuseppe
Telerik team
 answered on 13 Mar 2009
5 answers
116 views
Hello,

I have a RadWindow I am opening modally from anothe page.  In IE6, the drop down lists are not disabled on the parent page.  The rest of the page is disalbed as it should.  Is this is default behavior or is ther a property I should set on the RadWindow or RadWIndowManager to get these dropdown lists disabled?

I appreciate help from either Telerik or the community at large.

Thanks
Raj
Georgi Tunev
Telerik team
 answered on 13 Mar 2009
1 answer
84 views
When a FormDecorator control is placed in a Masterpage the controls in the content pages are not rendered exactly correct.
Georgi Tunev
Telerik team
 answered on 13 Mar 2009
2 answers
201 views
I'm using the Vista skin for my RadGrid, but I would like to be able to change the background color for the, what I thought, CommandItem row.
When I change the background on the CommandItemStyle in my ascx file, only the bottom 10px or so change the background color in the command row. Setting the Skin=" ", which should reset the RadGrid's skin to nothing and give me a clean slate doesn't make a difference either.
I know I can achieve this by using the CommandItemTemplate, but that also requires me to add the menu items that are otherwise already there (like "Add New Record" or "Refresh").

Is there a way to have this background color be pulled from a CSS so that all my RadGrids look the same?
Do I have to customize the Vista skin and change it in there somehow and create my own custom skin?
I just feel like I'm making it too complicated at this point, but maybe there really isn't an "easy" way to accomplish what I'm going for.


Stephan
Top achievements
Rank 1
 answered on 13 Mar 2009
2 answers
119 views
Hi! I've created a custom skin for my radgrid (called it NewDeafult2006) , but I can't change the color of text inside of the header of hyperlinkcolumn. Css classes 

.GridHeader_NewDefault2006

a,

 

.GridHeader_NewDefault2006

td

create styles on headers of all the other columns, but not for the hyperlinkcolumn. How to change that?
Thanks, Ana

 

Ana
Top achievements
Rank 1
 answered on 13 Mar 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?