Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
430 views
I have a rad grid.
For denoting the row selected i have given
 <SelectedItemStyle CssClass="SelectedStyle" />
Css:
 .SelectedStyle
     {
       background-image: url('..images/views.gif');
       background-repeat: no-repeat;
       background-position: top right;
 
     }
But this is not working
The grid is in the content page.
The css file is called in the master page.
Plz help





Dimo
Telerik team
 answered on 03 Apr 2009
1 answer
109 views
I am using RadAjaxPanel, and inside it is a simple <style> tag with a few styles. Inside the RadAjaxPanel are HTML controls that uses these styles. It looks fine when the page first loads, but after a POSTback from one of the controls in the AJAX panel, the styles seem to be "lost".

A couple of things ... the <style> tags are not in the <head> ... they are just in an AJAX panel inside the <body> tag on a page.

Is this expected that any <style> tags will be dropped? Is there a way to make the browser still "see" these style tags after the AJAX POSTback?

Thanks!
Jay
Dimo
Telerik team
 answered on 03 Apr 2009
0 answers
83 views
Hi,
    i'm developing a web application where in the rendering of the application is gets loaded 1/4 on initial stage and after 5 to 10 sec the complete page gets populates . Snapshot of the application is provided as a link below.
SnapShot of application rendering
Computer Surgeon
Top achievements
Rank 1
 asked on 03 Apr 2009
2 answers
158 views
Hello,

We are developing an web-application with telerik prometheus and are getting an increasing number of requests if we are able to host this on mac os..

So i just want to ask if there are any chances or plans to support prometheus to be run in mono-framework in the upcoming 12-24 months?

From other threads and blogs i found you dont support this at the moment and there is a chance that it could be running on mono but i cannot test this at the moment, so i would be happy if anyone can give some information about this..

thanks! greetings,
achim

Ivo
Telerik team
 answered on 03 Apr 2009
1 answer
99 views

Using RadControls for ASP.NET AJAX Q3 2008, I have page containing a RadSplitter with 3 horizontal RadPanes.  The top and bottom panes contain sliders with a single tab each.  I want to completely hide the tab container when the pane is expanded or docked.  Through trial and error I found that the following works, but is there a better way? 


    
        <script type="text/javascript" language="javascript" enableviewstate="false">  
 
        function HideTabContainer(sender, eventArgs) {  
            var slidingZone = sender._parent.get_id()  
            var tabsContainer = $find(slidingZone).getTabsContainer();  
            var panesContainerElement = document.getElementById(sender._originalParent.id);   
                      
            panesContainerElement.style.height = parseInt(tabsContainer.offsetHeight) + "px";     
            tabsContainer.style.height = "0px";  
            sender.hideTab();  
        }  
          
        function ShowTabContainerBeforeCollaspe(sender, eventArgs) {  
            var slidingZone = sender._parent.get_id()  
            var tabsContainer = $find(slidingZone).getTabsContainer();  
            var panesContainerElement = document.getElementById(sender._originalParent.id);   
              
            tabsContainer.style.height = panesContainerElement.style.height;  
            panesContainerElement.style.height = "" 
            sender.showTab();  
        }  
 
        function ShowTabContainerBeforeUndock(sender, eventArgs) {  
            sender.showTab();  
        }  
          
        </script> 
 
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server"/>  
        <telerik:RadSplitter ID="RadSplitter1" runat="server" Orientation="Horizontal" width="100%" Height="100%">  
            <telerik:RadPane ID="RadPane1" runat="server" IsClientID="True" Collapsed="false">  
                <telerik:RadSlidingZone ID="RadSlidingZone1" ClickToOpen="true" runat="server" SlideDirection="Bottom" IsClientID="True" > 
                    <telerik:RadSlidingPane ID="RadSlidingPane1" EnableDock="true" Title="Header" Height="200px" runat="server" 
                        OnClientBeforeExpand="HideTabContainer" OnClientBeforeDock="HideTabContainer"   
                        OnClientBeforeUndock="ShowTabContainerBeforeUndock" OnClientBeforeCollapse="ShowTabContainerBeforeCollaspe">  
                        <table style="width="100%"> 
                             <tr> 
                                <td></td>  
                             </tr> 
                        </table> 
                    </telerik:RadSlidingPane> 
                </telerik:RadSlidingZone> 
            </telerik:RadPane> 
            <telerik:RadPane ID="RadPane2" runat="server" Height="650px">  
                <table style="width: 100%">  
                    <tr> 
                        <td style="height: 650px;">  
                            <telerik:RadMultiPage id="RadMultiPage1" EnableViewState="false" runat="server">  
                                <telerik:RadPageView id="RadPageView1" runat="server" Width="100%" Height="100%" /> 
                                <telerik:RadPageView id="RadPageView2" runat="server" Width="100%" Height="100%" /> 
                                <telerik:RadPageView id="RadPageView3" runat="server" Width="100%" Height="100%" /> 
                                <telerik:RadPageView id="RadPageView4" runat="server" Width="100%" Height="100%" /> 
                                <telerik:RadPageView id="RadPageView5" runat="server" Width="100%" Height="100%" /> 
                            </telerik:RadMultiPage> 
                        </td> 
                    </tr> 
              </table> 
            </telerik:RadPane> 
            <telerik:RadPane ID="RadPane3" runat="server">  
                <telerik:RadSlidingZone ID="RadSlidingZone2" ClickToOpen="true" runat="server" SlideDirection="Top" IsClientID="True" > 
                    <telerik:RadSlidingPane ID="RadSlidingPane2" EnableDock="true" Title="Footer" runat="server"   
                        OnClientBeforeExpand="HideTabContainer" OnClientBeforeDock="HideTabContainer"   
                        OnClientBeforeUndock="ShowTabContainerBeforeUndock" OnClientBeforeCollapse="ShowTabContainerBeforeCollaspe">  
                        <table style="width: 100%">  
                            <tr> 
                                <td></td>  
                            </tr> 
                        </table>                      
                    </telerik:RadSlidingPane> 
                </telerik:RadSlidingZone> 
            </telerik:RadPane> 
        </telerik:RadSplitter> 
 
Svetlina Anati
Telerik team
 answered on 03 Apr 2009
2 answers
202 views
Is it possible to declare Context Menus for a Grid declaratively (and enjoy server side events) or is it only possible through client scripting?

I see many things about HeaderContextMenu but not RowContextMenu...


Thanks
Eric
Top achievements
Rank 1
 answered on 03 Apr 2009
1 answer
126 views
Hi
Is it possible to sync scheduler and Exchange server? Is there any example?

Regards,
naresh
Atanas Korchev
Telerik team
 answered on 03 Apr 2009
1 answer
212 views
I am using RadEditor for MOSS to launch a dialog window:

 

var dialogInput=new Object();

dialogInput.editor = editor;

 

var callback=function(dialogOutput)

{

    MyCallback(dialogOutput);

};

 

var dialogUrl= "/mylink.aspx";

 

editor.ShowDialog( dialogUrl, dialogInput,400,200,callback,{cmdName : editor.Localization[

"MyCommand"]}, "My Title");

}

For some reason, the getRadWindow() function in /mylink.aspx always return null:

 

 

 

function getRadWindow()

{

 

    if (window.radWindow)

    {

 

        return window.radWindow;

    }

 


    if
(window.frameElement && window.frameElement.radWindow)

 

 

    {

 

        return window.frameElement.radWindow;

    }

 

    
    return
null
;

}

I can't think of any reason why it would not return radWindow, can you help me out?

Thanks.

 

 

Stanimir
Telerik team
 answered on 03 Apr 2009
1 answer
144 views
We're using the RadEditor in SharePoint 2007 (version 4.5.4), and have configured it to show the Insert Paragraph button.

When we press the button on the toolbar it inserts a paragraph - but it also inserts a space in front of the cursor (or caret?) Also, if you've got text after the cursor it isn't put into the new paragraph (in the HTML view you can see that this text is now after the new paragraph, rather than in it)

However, if we press CTRL-m, however, it just starts a new paragraph. No space, and if there is text after the cursor it is put into the new paragraph. I'm not sure what's setting the CTRL-m shortcut (it isn't in the toolsfile), but I found out about it here:

http://www.telerik.com/help/aspnet/editor/usingthenewlinebrproperty.html

Is there a way of making the button behave like a 'CTRL-m'?

Also, where can I find out what is the latest version of the RadEditor for SharePoint? I keep seeing people writing about version 5.x.x? But the latest I can find is 4.5.4.
Stanimir
Telerik team
 answered on 03 Apr 2009
1 answer
90 views
Hi,
Let me know :

1. Does RadScheduler only export the appointment to ical formatted file, or does it also let me save the ical appointment in a programatic manner without asking for human interaction?
2. In case of exporting all the appointments in one go, how can one save each of, say,  hundreds of appointments one by one(as i have outlook 2003, so could not see exporting multiple appointments in one go)?

What i want to achieve is that when i click for 'export to ical for an appointment', it should save this in outlook instead of asking me to save it manually.
Help me to get my exported appointments automatically saved in outlook calendar.

regards,
Patni
Peter
Telerik team
 answered on 03 Apr 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?