Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
84 views
today, i'm upgrade from 2008 q2 to 2009 q1,unfortunately, onclickentClose event not fired when call hide method
it's a bug ? or a design?
help me plz
edjia
Top achievements
Rank 1
 answered on 03 May 2009
3 answers
143 views
Hi,

I'd like to open a RadWindow in parent page and call a function in the new opened RadWindow. I've taken the sample Calling Functions in Windows (http://www.telerik.com/help/aspnet-ajax/window_programmingcallingfunctions.html). But if I call the function in parent page I get this error: Object doesn't support this property or method. It looks like there is no function declared. But it is. Here is my code:

parent:

 

function onNewEntry(sender, title) {

 

 

    var oWnd = $find("<%= RadWindow1.ClientID %>");

 

 

    oWnd.set_offsetElementID(sender.id);

 

    oWnd.show();

 

    var nWnd = $find("<%=RadWindowManager1.ClientID %>").GetActiveWindow();

 

    nWnd.get_ContentFrame().contentWindow.CalledFn(args);

}

on target page:

<
body>

 

 

<form id="form1" runat="server">

 

 

<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>

 

 

<asp:HiddenField ID="HiddenField1" runat="server" />

 

 

 

 

 

 

<script type="text/javascript">

 

 

 

 

 

 

    function CalledFn(args) {

 

 

        var hf = $find("<%= HiddenField1.ClientId %>");

 

        hf.value = args;

       }

 

 

</script>

 

 

 

 

 

 

</form>

 

</

 

body>

 

adi
Top achievements
Rank 1
 answered on 02 May 2009
16 answers
540 views

Has anyone tried or successfully used Scheduler for Hotel booking or reservations application?

I am looking for something like a graph for all rooms in a weekly or monthly basis for easy viewing of  available rooms.

I would appreciate anyone who can give me some leads.

Thanks

Jimi

  

jimi
Top achievements
Rank 1
 answered on 02 May 2009
2 answers
189 views
Hello,

Is it hard to make the calendar size smaller and put animation on how the calendar show and hide?

Thank you.

aciang
Top achievements
Rank 1
 answered on 02 May 2009
2 answers
95 views
Hey Telerik,

I did not see a thread on this topic already, and could not find examples in the documentation.

Is there a way to update the Show More Link on the scheduler to point to the timeline view and not the day view?

Thanks,
Cody
mcpdinkansas
Top achievements
Rank 1
 answered on 01 May 2009
4 answers
810 views
I like the built-in skins of the Telerik-controls, and I use them as much as I can.
However, sometimes the RadGrids take a little to much space with the built-in skins.

For some UIs I build I would like to make the whole UI a little more compact, such as decreasing the fontsize, decreasing the space between rows, etc.

I know I can do this using either CSS and/or applying styles to the RadGrid, but I wanted to check if anyone has done this work before me, I assume there are a number of things to modify.

So, what are the minimal steps to do in order to make the RadGrid more compact in the UI? (except for the obvious alternative of reducing number of rows/columns)

Thanks!
/Fredrik
Jason
Top achievements
Rank 2
 answered on 01 May 2009
2 answers
115 views
Hi,

I'm currently evaluating the ASP NET package and have run into a problem with the SlidingPane.

The code below displays the tree view properly when the sliding pane is docked open.  Once it is closed, clicking on the Tab will make it slide open again but the Tree view is almost completely obscured.  I'm probably doing something wrong and would appreciate some help as I don't have much time remaining to finish the evaluation.  Here is the relevant section with the nested panes.

    <telerik:RadSplitter ID="RadSplitter1" Runat="server"
       Orientation="Horizontal" Skin="Outlook"
        SplitBarsSize="" ResizeMode="EndPane"  FullScreenMode="True">
        <telerik:RadPane ID="HEADER_Pane" runat="server" Height="50" Scrolling="None">
        <h1>Title</h1>
        </telerik:RadPane>
        <telerik:RadPane ID="CONTENT_Pane" runat="server" Scrolling="None">
            <telerik:RadSplitter ID="RadSplitter2" runat="server" Skin="Office2007">
                <telerik:RadPane ID="NAVIGATION_Pane" runat="server" Scrolling="None" MinWidth="22" Width="22" MaxWidth="22">
                    <telerik:RadSlidingZone ID="NAVIGATION_SlidingZone" runat="server" ClickToOpen="True" SlideDuration="300" DockedPaneId="MENU_SlidingPane">
                        <telerik:RadSlidingPane ID="MENU_SlidingPane" runat="server" Title="Menu" Width="200px" Scrolling="None">

                            <telerik:RadSplitter ID="RadSplitter3" runat="server" Orientation="Horizontal">
                                <telerik:RadPane ID="NAVIGATION_Pane2" runat="server" Scrolling="None" >
                                    <%-- MENU_TreeView --%>
                                    <telerik:RadTreeView ID="MENU_TreeView" runat="server" Skin="Office2007"
                                        onnodeclick="MENU_TreeView_NodeClick">
                                        <Nodes>
                                            <telerik:RadTreeNode runat="server" AllowDrag="False" Expanded="True"
                                                ImageUrl="~/icons/aspneticons/user3_16x16.gif" Text="root" NodeType="userRoot">
                                                <Nodes>
                                                    <telerik:RadTreeNode runat="server"
                                                        ImageUrl="~/icons/aspneticons/image_16x16.gif" Text="Item1" Expanded="True" Category="myItem1">
                                                    </telerik:RadTreeNode>
                                                    <telerik:RadTreeNode runat="server"
                                                        ImageUrl="~/icons/aspneticons/report2_16x16.gif" Text="Item2" Expanded="True"  Category="myItem2">
                                                    </telerik:RadTreeNode>
                                                    <telerik:RadTreeNode runat="server"
                                                        ImageUrl="~/icons/aspneticons/web_16x16.gif" Text="Item3" Expanded="True" ExpandMode="ClientSide"  Category="myItem3">
                                                    </telerik:RadTreeNode>
                                                </Nodes>
                                            </telerik:RadTreeNode>
                                        </Nodes>
                                    </telerik:RadTreeView>
</telerik:RadPane>
                <telerik:RadSplitBar ID="RadSplitBar2" runat="server"  CollapseMode="Forward" />
<telerik:RadPane runat="server" Scrolling="None">
south west pane
</telerik:RadPane>
                            </telerik:RadSplitter>                       
                        </telerik:RadSlidingPane>

                    </telerik:RadSlidingZone>
                </telerik:RadPane>
                <telerik:RadSplitBar ID="RadSplitBar1" runat="server" CollapseMode="Forward" />
                <telerik:RadPane ID="MAINCONTENT_Pane" runat="server">
                </telerik:RadPane>
            </telerik:RadSplitter>
        </telerik:RadPane>
    </telerik:RadSplitter>


Thanks.

Rubens
Top achievements
Rank 1
 answered on 01 May 2009
5 answers
145 views
Hi Telerik,
I "refactored" my code and now - when using "Configure Ajax Manager" - the generated code contains <telerik.web.ui.ajaxsetting> instead of  <telerik:AjaxSetting>.
Whats wrong here?

Best regards,
Andreas
Daniel Sim
Top achievements
Rank 1
 answered on 01 May 2009
4 answers
322 views

I have a RadTabStrip control.  I create the tabs dynamically by binding a DataTable.  The Datatable has four columns: ID, Name, URL, and ParentID.  When a tab is clicked, it redirects to the page specified by the URL.

I want to add some functionality before the redirect.  When I add an addtabclick property to the RadTabStrip, nothing happens.  There is also no Postback on the page the click occurs on.

 

What am I missing?

Lucas Bailey
Top achievements
Rank 1
 answered on 01 May 2009
2 answers
138 views
Hi Telerik Support,
    I have been working with the Upload control, and do not see how to get the values of the additional fields before postback.
    I would like to validate the information before they submit to the server.  I tried using OnClientSubmitting,  but have not been able to figure out how to get to my control which is a description field an example on how I would accomplish this would be greatly appreciated. 
Thanks in advance for the help.
Julie
Julie
Top achievements
Rank 1
 answered on 01 May 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?