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

I am currently tieing the RadScheduler to a datasource but once I have it up, I cannot seem to do an insert. Nothing happens.
As such, I cannot see how the delete and update work. Below is what I have for the .aspx file:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="RadScheduler.aspx.cs"  %>
  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
  
    protected void Button1_Click(object sender, EventArgs e)
    {
  
    }
</script>
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
      
    </div>
    <telerik:RadScriptManager ID="RadScriptManager1" Runat="server">
    </telerik:RadScriptManager>
      
    <telerik:RadScheduler ID="RadScheduler1" runat="server" 
        DataEndField="DataEndField" DataKeyField="DataKeyField" 
        DataSourceID="SqlDataSource3" DataStartField="DataStartField" 
        DataSubjectField="DataSubjectField">
    </telerik:RadScheduler>
    <asp:SqlDataSource ID="SqlDataSource3" runat="server" 
        ConnectionString="<%$ ConnectionStrings:Scheduler %>" 
        SelectCommand="SELECT [DataKeyField], [DataSubjectField], [DataStartField], [DataEndField] FROM [Sched]">
    </asp:SqlDataSource>
    <br />
    </form>
</body>
</html>


Below is my aspx.cs file content:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Collections;
using System.Linq;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Telerik.Web.UI;
using System.Data;
using System.Web.UI.HtmlControls;
  
   
  
namespace AjaxRND
{
    public partial class RadScheduler : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
               
        }
    }
}

Thank you in advance


 

 

Dan Lehmann
Top achievements
Rank 1
 answered on 08 Jun 2011
1 answer
84 views
I want to display the hijri conversion of dates in a RadCalendar ; the problem is that the text is left-to-right and I need to change it to RTL...
(see picture attached, the tooltip should display "الإثنين 02 رمضان 1432")
Fortune
Top achievements
Rank 1
 answered on 08 Jun 2011
3 answers
66 views
I have created an instance of a RadTimePicker with RenderDirection="Vertical" and using a footer template. Then when I pick a time in the time picker control in column 2 or 3 it changes the time ahead by 30 minutes. Eg. if I pick 10:00 AM it closes the popup and puts 10:30 AM in the text box.

After extensive testing and trying to isolate and recreate the issue I've found that the problem goes away  if

 - I don't use IE 8 (use Firefox or Chrome instead)
 - Use a Render Direction = Horizontal
 - Don't use a footer template on the timepicker popup

Additionally when I open the popup again - it actually displays the correct time in the popup.

Please let me know if there is something I have overlooked that can correct this behaviour without using any of the options I listed above which aren't what we want to have to do.


Is there an e-mail address I could submit a copy of my test application that displays this behaviour to? I can't attach a zip to this... 

Thanks, 

Jonathan

Main code for the page displays below: (there is no code-behind code)


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
    <telerik:RadStyleSheetManager id="RadStyleSheetManager1" runat="server" />
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        <Scripts>
            <%--Needed for JavaScript IntelliSense in VS2010--%>
            <%--For VS2008 replace RadScriptManager with ScriptManager--%>
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />
        </Scripts>
    </telerik:RadScriptManager>
    <script type="text/javascript">
        //Put your JavaScript code here.
    </script>
    <div>
    <telerik:RadTimePicker ID="tme_startTime" runat="server" Skin="Vista"
        Culture="en-CA" AutoPostBack="false" AutoPostBackControl="TimeView">
            <Calendar ID="Calendar1" UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x" runat="server"></Calendar>
            <DatePopupButton Visible="False" CssClass="" ImageUrl="" HoverImageUrl=""></DatePopupButton>
            <TimeView ID="TimeView1" ShowHeader="false" CellSpacing="-1" Culture="en-CA" Interval="00:30:00" RenderDirection="Vertical" HeaderText="" runat="server">
                <FooterTemplate>
                    <button onclick="javascript: ClosePopup(); return false;">Close</button>
                </FooterTemplate>
            </TimeView>
            <TimePopupButton CssClass="" ImageUrl="" HoverImageUrl=""></TimePopupButton>
            <DateInput Width="" DisplayDateFormat="dd/MM/yyyy" DateFormat="dd/MM/yyyy"
                AutoPostBack="false"></DateInput>
        <ShowAnimation Type="Slide" />
        <HideAnimation Type="Slide" />
    </telerik:RadTimePicker>
    44
    <br />
    <br />
 
   66
    <telerik:RadTimePicker ID="RadTimePicker1" runat="server" Skin="Vista"
        Culture="en-CA" AutoPostBack="false" AutoPostBackControl="TimeView">
            <Calendar ID="Calendar2" UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False" ViewSelectorText="x" runat="server"></Calendar>
            <DatePopupButton Visible="False" CssClass="" ImageUrl="" HoverImageUrl=""></DatePopupButton>
            <TimeView ID="TimeView3" CellSpacing="-1" Culture="en-CA" Interval="00:30:00" RenderDirection="Vertical" HeaderText="" runat="server">
                <FooterTemplate>
 
                </FooterTemplate>
            </TimeView>
            <TimePopupButton CssClass="" ImageUrl="" HoverImageUrl=""></TimePopupButton>
            <DateInput Width="" DisplayDateFormat="dd/MM/yyyy" DateFormat="dd/MM/yyyy"
                AutoPostBack="false"></DateInput>
        <ShowAnimation Type="Slide" />
        <HideAnimation Type="Slide" />
    </telerik:RadTimePicker>
 
    <br />
    <br />
    <telerik:RadTimePicker ID="RadTimePicker3" runat="server" AutoPostBack="false" >
            <TimeView ID="TimeView2"  Interval="00:30:00" HeaderText="" RenderDirection="Vertical" runat="server">
                <FooterTemplate>
                 g
                </FooterTemplate>
            </TimeView>
    </telerik:RadTimePicker>
    88
    <br />
    <br />
    <telerik:RadTimePicker ID="RadTimePicker2" runat="server" AutoPostBack="false" >
            <TimeView ID="TimeView4"  Interval="00:30:00" HeaderText="" runat="server">
                <FooterTemplate>
                 g
                </FooterTemplate>
            </TimeView>
    </telerik:RadTimePicker>
    36
    </div>
    </form>
</body>
</html>


Fortune
Top achievements
Rank 1
 answered on 08 Jun 2011
2 answers
50 views
In IE7, if a rad button appears inside a RadGrid nested view template with HierarchyLoadMode="Client", the button does not hide after the details are shown then toggled off again:

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="repro.aspx.cs" Inherits="_Default" %>
<!doctype html>
<html>
<head><title></title></head>
<body>
  <form id="form1" runat="server">
  <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>  
  <telerik:RadGrid ID="RadGrid1" runat="server" CellSpacing="0" GridLines="None">
    <MasterTableView HierarchyLoadMode="Client">
      <NestedViewTemplate>
        <telerik:RadButton ID="RadButton1" runat="server" Text="RadButton">
        </telerik:RadButton>
      </NestedViewTemplate>       
    </MasterTableView>
  </telerik:RadGrid>
</form>
</body>
</html>

using System;
public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        RadGrid1.DataSource = new string[] { "item1", "item2" };
    }
}

Anything special I should be doing?
Adam
Top achievements
Rank 1
 answered on 08 Jun 2011
4 answers
74 views
Simple question; Can I?

Specifically, can I group the TimelineView by custom attributes.

The attribute's don't represent resources, but rather different calendars. Imagine having a calendar for yourself and your partner and wanting to display them together.

-- 
Stuart
Stuart Hemming
Top achievements
Rank 2
 answered on 08 Jun 2011
4 answers
90 views
Hi ,

I am trying to update the radgrid in template colum. Update is not working.

 
What i'm missing here?

Need help ASAP.
Thanks
Eva
Top achievements
Rank 1
 answered on 08 Jun 2011
3 answers
144 views
Just an FYI.  I ran into an odd problem where the page layout changed depending on whether I ran it locally or off of an Intranet Web Server.  Turns out IE8/9 goes to IE7 Compatibility by default for Intranet Sites - and it's not obvious that it's doing this.  It was affecting alignment of some Telerik controls that I was using.

In IE8/9, if you go to Tools -> Compatibility View Settings - you'll see that 'Display intranet sites in Compatibility View' mode is checked by default.  A good bet may be to have this disabled in Group Policy.
John Seifert
Top achievements
Rank 1
 answered on 08 Jun 2011
1 answer
69 views
is there anyway using Loadondemand that I can use client-side code to select a node?
Kate
Telerik team
 answered on 08 Jun 2011
3 answers
60 views
Hi
I've used the ComboBox.
  When I load the site and the page loaded, I will give this error

The data area passed to a system call is too small


But no problem in local mode and the program is working properly

What causes

What causes this error to occur?
Ironically, another page in the program there with the same profile
No error but does not fully insert and delete operations and ... Takes place
Why?
Please help me thank
Dimitar Terziev
Telerik team
 answered on 08 Jun 2011
1 answer
137 views
Hello, I've read the threads and know about the IE CSS limitations. But in our case we do not have a lot of stylesheets. All we have is one webapp that uses the telerik controls and 1 small stylesheet (css) file with about 20 selectors. We have pages on our site that display some radgrid controls, radtoolbar, radlistview, radtreeview, radcombobox,radtextbox , radwindow all in one page. For some reason after a while of navigating our site, the radtreeview and radtoolbar loose their styles. The radtreeview does not show the lines connecting the nodes and the radtoolbar displays the buttons vertically instead of horizontally. The rest of the telerik controls look ok. So I want to know if there's a need to utilize the RadStylesheetManager (even though we ONLY have 1 CSS file with 20 selectors). I would also like to know if there's a way to troubleshoot this and find out what might be causing this issue. By the way everything looks great in Firefox.
Thanks
TC
Kate
Telerik team
 answered on 08 Jun 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
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?