Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
192 views
We are using RadDatePicker v2012.3.1016.40 and running into sporadic issues in Internet Explorer 9 where the "SelectedDateChanged" event is not firing properly. So far I am unable to find steps to reliably reproduce the error. After a test launch in IIS Express it usually works fine for me, but sometimes not. Usually the issue seems to resolve itself after some prodding, but I have no idea why or how it suddenly starts to work.

Are there any logs or anything I can provide to help you help me with this problem? This is only happening in IE9, but many of our users are on IE9, so this needs to work. Below is the relevant portion of code to this particular issue.

Thanks,
Matthew

-- Markup --
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="NewTicket.aspx.vb" Inherits="Ticketer.NewTicket" smartNavigation="True"%>
<%@ Register Assembly="Telerik.Web.UI, Version=2012.3.1016.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TagPrefix="Telerik" %>
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
    <head>
    <meta http-equiv="X-UA-Compatible" content="IE=IE9" />
        <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR" />
        <meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE" />
        <meta content="JavaScript" name="vs_defaultClientScript" />
        <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema" />
    </head>
    <body style="MARGIN: 5px; BACKGROUND-COLOR: white">
        <form id="Form1" method="post" runat="server">
            <asp:ScriptManager ID="sm" runat="server">
            </asp:ScriptManager>
      <table cellspacing="0" cellpadding="0" border="0" class="paddedControl">
        <tr>
          <td><Telerik:RadDatePicker ID="rdpStartDate" runat="server" DateInput-ReadOnly="True" Width="100" AutoPostBack="true" Calendar-AutoPostBack="True"></Telerik:RadDatePicker></td>
          <td><Telerik:RadDatePicker ID="rdpDueDate" runat="server" DateInput-ReadOnly="True" Width="100" AutoPostBack="true" Calendar-AutoPostBack="True"></Telerik:RadDatePicker></td>
        </tr>
      </table>
        </form>
    </body>
</html>

-- Codebehind --
Partial Class NewTicket
    Inherits System.Web.UI.Page
 
    Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        If Not Page.IsPostBack Then
            rdpStartDate.SelectedDate = Today
        End If
        If Me.rdpStartDate.SelectedDate.HasValue AndAlso Me.rdpDueDate.SelectedDate.HasValue Then
            Me.cmdMakeTicket.Visible = True
        Else
            Me.cmdMakeTicket.Visible = False
        End If
    End Sub
 
    Private Sub rdpStartDate_SelectedDateChanged(sender As Object, e As Telerik.Web.UI.Calendar.SelectedDateChangedEventArgs) Handles rdpStartDate.SelectedDateChanged, rdpDueDate.SelectedDateChanged
        If Me.rdpStartDate.SelectedDate.HasValue AndAlso Me.rdpDueDate.SelectedDate.HasValue Then
            Me.cmdMakeTicket.Visible = True
        Else
            Me.cmdMakeTicket.Visible = False
        End If
    End Sub
End Class
Vasil
Telerik team
 answered on 28 Feb 2013
1 answer
56 views
Good afternoon,

In several places in our custom SharePoint site we are using AutoCompleteBox in SharePoint modal forms. I'm encountering an issue where the Z-Index of the dropdown will NOT go over the SharePoint 2010 Modal form. I've gone ahead and set the Z-Index higher than the modal form (which is set at 1506) and still the dropdown gets cut off. See image attached. Any resolutions?

Plamen
Telerik team
 answered on 28 Feb 2013
1 answer
131 views
When an iFrame is used to load RadWindow content, the status bar shows a loading indicator until the content is displayed. Is there any way to manually show this GIF in the for custom operations... like an AJAX transaction? There are times I auto-load data at intervals and don't want to lock down the entire RadWindow, but I do want a nice common place to show some operation is going on (and the status bar seems like a great place to do this). Any help would be appreciated.
Marin Bratanov
Telerik team
 answered on 28 Feb 2013
10 answers
262 views
Hiya,

I'm using a RadListView bound to a ObjectDataSource and using a RadDataPager to allow paging (its a simple forum application). One of the features I'm trying to have is to automatically jump to a specific page depending on the url i.e

/forum.aspx?topic=1  would jump to the first page where as
/forum.aspx?topic=1&reply=997 might jump to the 10th page.

To accomplish this, I've setup a RadListView_DataBound component which quite simply tries to jump to the correct page which holds the post id :-

protected void RadListView1_DataBound(object sender, EventArgs e)
   {
       if (!IsPostBack && (Request.QueryString["post_id"] != null))
       {
           //First get the page size
           int pageSize = RadListView1.PageSize;
 
           //Then get the reply_id
           int replyID = int.Parse(Request.QueryString["post_id"]);
 
           int iPage = 1;
           int iPageElementCount = pageSize;
 
           foreach(forumPost oPost in odsForumPosts.Select())
           {
               if(oPost.ID == replyID)
               {
                   RadListView1.CurrentPageIndex = iPage;
                   return;
               }
               iPageElementCount--;
               if(iPageElementCount == 0)
               {
                   iPage++;
                   iPageElementCount = pageSize;
               }
           }
       }
   }

The problem I seem to have is that even after setting CurrentPageIndex, the page doesn't change.

Any ideas?

Thanks!
mitch
Pavlina
Telerik team
 answered on 28 Feb 2013
1 answer
104 views
Hi,

I am trying to create a Org Chart Webpart in Sharepoint 2010 using RadOrgchart, I am not getting errors but it doesnt display anything in teh page. I just see a bank Page. Can someone please help me with this?

Here is the code.

  protected override void CreateChildControls()
        {
            base.CreateChildControls();
        }

        protected override void OnInit(EventArgs e)
        {
            Page.Init += delegate(object sender, EventArgs e_Init)
            {
                if (ScriptManager.GetCurrent(Page) != null)
                {
                    Page.Items.Remove(typeof(ScriptManager));
                    scriptManager = new RadScriptManager();
                    scriptManager.ID = "ScriptManager";
                    this.Page.Items.Add(scriptManager.GetType(), scriptManager);
                    this.Page.Form.Controls.Add(scriptManager);
                }
            };

            CreateOrgChart();       
            base.OnInit(e);
        }


        private void CreateOrgChart()
        {
            DataTable oData = GetOrgData();
            RadOrgChart oOrgChart = new RadOrgChart();
            oOrgChart.DataSource = oData;
            oOrgChart.DataFieldID = "NetworkID";
            oOrgChart.DataFieldParentID = "ManagerID";
            oOrgChart.DataTextField = "FullName";
            oOrgChart.DataBind();
            this.Page.Items.Add(oOrgChart);
        }
Plamen
Telerik team
 answered on 28 Feb 2013
14 answers
320 views
Hi telerik team,

while exporting telerik grid to excel, i m getting internet explorer can't download Filename from the sitename alert box is coming if prefix contains https://.   but for  http:// it's exporting fine , hope i need to configure some setting in IE browser please give those steps.

Thanks for any help.
Pavlina
Telerik team
 answered on 28 Feb 2013
4 answers
164 views
Hi,

I was wondering if it's possible to do something like this using the TriState checkboxes.

Let's say I have this specific tree, no more than these two levels :
(_) Group 1
   +------- [_] Item 1 
   +------- [_] Item 2
   +------- [_] Item 3
   +------- [_] Item 4
(_) Group 2
   +------- [_] Item 5
   +------- [_] Item 6
   +------- [_] Item 7
   +------- [_] Item 8

Case:
A user could chose one to many items from group 1, or one to many items from group 2. But when they check the group 2 or the items 5 to 8, all the items from group 1 get unckecked.  Or when they check group 1 or any item from 1 to 4, all items from group 2 gets unchecked.

Can this be done easely or I have to catch some client event and program all the JavaScript manually ?

Also, is it possible to have a multi-column items ?

Kind regards,

Michel

Miky
Top achievements
Rank 1
 answered on 28 Feb 2013
2 answers
109 views
Hello,

How can we check if the currently selected view of Radscheduler is Day view using JavaScript? Can anyone provide the JS code to check this condition?

Thanks,
Teena
Princy
Top achievements
Rank 2
 answered on 28 Feb 2013
2 answers
1.1K+ views
I have a old project (from 2010) which is having "Telerik.Web.UI.dll" in the bin folder.  Is there any way to identify if that dll is from licensed version of product or it is a trial version ?

Thanks,
Bhimraj
Bhimraj Ghadge
Top achievements
Rank 1
 answered on 28 Feb 2013
1 answer
46 views
Hello, I was having a strange problem in which RadAutoCompleteBoxes within a FormTemplate within a RadGrid were not rendering properly on first load.  When clicking edit on a particular row and the edit popup came up, the autocomplete control would simply not appear (though I could see it in the rendered HTML).  Oddly, if I cancelled the edit modal and clicked edit again, the autocomplete appeared just fine.

I was able to fix this by adding a DOCTYPE specification on the page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


Unfortunately, after applying this DOCTYPE setting my RadTextBox controls now resize on hover.  I removed and reapplied the DOCTYPE a few times to make sure that this was the cause of the resizing behavior.  Setting EnableSingleInputRendering="false" reduced the effect, but the height and width seem to increase by about a pixel or so on hover.  Removing the DOCTYPE fixes the resizing problem, but then my autocomplete is broken again.

Any help on this matter would be greatly appreciated.
Galin
Telerik team
 answered on 28 Feb 2013
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?