Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
100 views
When the schedular is in month view, is it possible to double click on a given date, and rather than displaying the schedular in day view, direct the user to a new page and include the date clicked as part of the querystring?

I have a simple schedular in month view that I would like a user to double click a date, then the user is directed to a form that will be submitted to a database. I would like to populate a label on the form with the date the user double clicked.

Thank you in advance.
Allan
Top achievements
Rank 2
 answered on 02 Aug 2011
5 answers
199 views
I've run the test here with flying colors, it creates the folders/files, accesses them, and deletes them properly. However I still can not create a folder through the RadFileExplorer. This is running on a local intranet SBS2003 server, with I believe Unrestricted trust... any idea why I might not be able to create folders?
Dobromir
Telerik team
 answered on 02 Aug 2011
1 answer
79 views
Hi all,
There is a weird behaviour of the Chart when the zoom is active. The same graph without zoom displays all the margins, but if the zoom is active, the right and top margins aren't shown.  (images one serie.jpg, oneserieNozoom.jpg)
Another weird behaviour is about the XAxis labels: if the zoom is inactive the Xaxis label are ok, but when I turn on the zoom the first label appears cut in the middle and It cannot be read. (OneSerieLabelsOK.jpg, OneSerieLabelsCutOff.jpg)
Anyone knows what can it be due to and how can I solve it?
Thanks in advance
Giuseppe
Telerik team
 answered on 02 Aug 2011
1 answer
116 views
Hello

I'm trying to apply some custom positioning on the Y-Axislabel. This is working fine using the following code:  (left situation) in screenshot)

BaseChart.PlotArea.YAxis.AxisLabel.Visible = true;
BaseChart.PlotArea.YAxis.AxisLabel.Appearance.RotationAngle = 360;
BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.Auto = false;
BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.AlignedPosition = Telerik.Charting.Styles.AlignedPositions.None;
BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.X = 20;
BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.Y = -30;

But once I try to call GetBitmap() or the RenderControl() method on the chart the label position is lost. (right situation in screenshot)

Kind Regards,
Kristof
Giuseppe
Telerik team
 answered on 02 Aug 2011
10 answers
400 views

Hi,

Here’s the code:

 

<div>

    <telerik:RadWindowManager ID="RadWindowManager1" runat="server" ShowContentDuringLoad="true" >

        <Windows>

            <telerik:RadWindow ID="RadWindow1" runat="server" Behaviors="Close,Minimize,Move,Resize,Maximize" Modal="true" Skin="Office2007" Title="NewPage" >

                <ContentTemplate> 

                    Here's the text for Modal window!

                </ContentTemplate>                

            </telerik:RadWindow>

        </Windows>

    </telerik:RadWindowManager>

    <br />

    <input type="button" value="click Here" onclick="openRadWindow();" />

    <script type="text/javascript">

 

        function openRadWindow() {

 

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

            var rwindow = rwManager.Open("", "RadWindow1");

            rwindow.center();

            return false;

        }

    </script>

</div>


I’m using $find() to grab the Window Manager as this section is in a user control and the container page also has a RadWindowManager.

When I click on the button, the RadWindow shows up including the title but -  anything inside the Content template does not show in the window.

Am I missing something?

 

Also, I wonder if the content template is specific to Q3-2009 release as we haven’t updated to that version yet.

 

Any help pointer will be great appreciated.

v
Top achievements
Rank 1
 answered on 02 Aug 2011
1 answer
90 views
I am very new to this concept so please let me know how to integrate telerick radschedular with asp.net from the scratch..please i search a lot but couldnt find any useful links plese help.
Plamen
Telerik team
 answered on 02 Aug 2011
3 answers
385 views

Hi,

 

How to show only current month days in the MonthView and NOT show the last/next few days of the previous/next month.

Regards
Shashi

Plamen
Telerik team
 answered on 02 Aug 2011
2 answers
286 views
Hi!

I have made a web site following exactly the example provided here:
http://demos.telerik.com/aspnet-ajax/upload/examples/clientsideapi/defaultcs.aspx

I get the files to upload without problem but the RadProgressArea doesn't show up. Is there something not represented in the example code that should be included to make the RadProgressArea show up and present the progress?

Cheers!
Christoffer Rosenqvist
Top achievements
Rank 1
 answered on 02 Aug 2011
1 answer
104 views
Hello! I have RadGrid with no records, and column with filter template. In filter template i have RadTextBox.
User must enter value in RadTextBox, press enter and then on server-side there is a search request with paramenter, wich is value in RadTextBox. So i have problems implementing this functionality. Here is my markup for column in RadGrid:
<telerik:GridBoundColumn DataField="FullName" UniqueName="FullNameColumn" HeaderText="Имя"
                        ReadOnly="true" CurrentFilterFunction="Contains" AllowFiltering="true"   
                        ShowFilterIcon="false" FilterControlWidth="200px">
                        <FilterTemplate>
                            <telerik:RadTextBox runat="server" AutoPostBack="true" ID="NameRadTextBox" ClientIDMode="Static" EmptyMessage="Введите ФИО" ClientEvents-OnKeyPress="btnClick"/>
                            <telerik:RadCodeBlock ID="rcb1" runat="server">
                                    <script type="text/javascript">
                                        function btnClick(sender, e) {
                                            if (e.get_keyCode() == 13) {
                                                $find("<%= RadAjaxManager.ClientID %>").ajaxRequest();
                                            }
                                        }
                                    </script>
                                </telerik:RadCodeBlock>
                        </FilterTemplate>
                    </telerik:GridBoundColumn>
Subscribing on event:
<telerik:RadAjaxManager ID="RadAjaxManager" runat="server" OnAjaxRequest="RadAjaxManager_AjaxRequest">
.....

 On server-side i have handler for RadAjaxManager_AjaxRequest:
protected void RadAjaxManager_AjaxRequest(object sender, AjaxRequestEventArgs e)
        {
             
                var results = new List<CompanyUser>();
                var searchStr = e.Argument;
                var users = _userProvider.SearchByName(searchStr);
                UsersList.DataSource = users;
                UsersList.DataBind();
 
        }
But nothing happens. Grid is still empty. I checked recieved data from
 database and it's ok. What is missed or what i'm doing wrong? 
Tsvetina
Telerik team
 answered on 02 Aug 2011
1 answer
123 views
I am trying to bind a grid with xml datasource.
<asp:XmlDataSource ID="XmlDataSource1" runat="server" EnableCaching="False"
    DataFile="http://www.w3schools.com/xml/cd_catalog.xml" XPath="CATALOG/CD"></asp:XmlDataSource>
But no data displayed. Is there any error in my XPath.

Tsvetina
Telerik team
 answered on 02 Aug 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?