| <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Version=2008.03.1314.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" validate="false" /> |
| <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" /> |
function
OpenPositionedWindow(oButton, url, windowName)
{
var oWnd = window.radopen(url,windowName);
}
function CallLetter(ResumeIds)
{
var oWnd = radopen("hrComments.aspx?ResumeIds=" +ResumeIds, "RadWindow1");
oWnd.center();
}
function TimeSlot(ResumeIds)
{
var oWnd = radopen("TimeSlote.aspx?ResumeIds=" +ResumeIds, "RadWindow1");
oWnd.center();
}
<asp:Button runat="server" ID="btnTime" OnClientClick="TimeSlot('12'); return false;" Text="Time Slot" />
<asp:Button runat="server" ID="Button1" OnClientClick="CallLetter('12'); return false;" Text="Send Call Letter" />
<telerik:RadWindowManager ID="RadWindowManager1" Width="800px" Height="600px" runat="server" VisibleStatusbar="true" Animation="None" Skin="Office2007" Modal="true"
Title="Details For this Person" >
</telerik:RadWindowManager>
I use the following code to open rad window.but i want change the hight and width dynamically
| <script type="text/javascript"> |
| function UpdateTime(sender, args) { |
| var panel = $find("<%=RadXmlHttpPanel1.ClientID%>"); |
| panel.set_value(); |
| window.setInterval(UpdateTime, 1000); |
| } |
| </script> |
| <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Default"> |
| </telerik:RadAjaxLoadingPanel> |
| <telerik:RadXmlHttpPanel ID="RadXmlHttpPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1" |
| Value="test" OnServiceRequest="XmlHttpPanel_ServiceRequest"> |
| <asp:PlaceHolder ID="ph" runat="server"></asp:PlaceHolder> |
| </telerik:RadXmlHttpPanel> |
| <script type="text/javascript"> |
| UpdateTime; |
| </script> |
| Protected Sub XmlHttpPanel_ServiceRequest(ByVal sender As Object, ByVal e As RadXmlHttpPanelEventArgs) |
| Dim val As String = e.Value |
| ph.Controls.Add(New LiteralControl("<font color='#000000'>" & Now.ToString & "</font>")) |
| End Sub |
_a_radEditor =
new RadEditor();
_a_radEditor.ID =
"a_RadEditor";
_a_radEditor.ImageManager.UploadPaths = new string[] { tempURL };
_a_radEditor.ImageManager.ViewPaths =
new string[] { tempURL };
_a_radEditor.ImageManager.DeletePaths =
new string[] { tempURL };
I have an existing ASP.NET web application built in VS 2005 (.NET2.0) that contains existing Telerik ASP.NET Q1 2009 controls on the content page (RadAjaxManager, RadGrid plus a number of asp:dropdown, asp:ListBox and asp:Panel controls). The master page contains a RadMenu control, but I don't believe this is causing my issue.
My issue is that I am now planning on replacing some of the dropdown and ListBox controls with one telerik:TreeView control (ASP.NET AJAX Q2 2009 NET20). My understanding is that I need the telerik:RadScriptManager as well to get this the tree view to work. Unfortunately the page loads with an error "A compilation error has occurred.". In a test page without the classic controls the page loads OK, and the exisitng works fine without the new controls. In attempting to debug the code, I never find where the issue is. Just trying to load the page just kick me right out. The event viewer logs the below warning:
Event Type: Warning
Event Source: ASP.NET 2.0.50727.0
Event Category: Web Event
Event ID: 1310
Date: 2009-08-31
Time: 11:23:24 AM
User: N/A
Computer: CA22665-FKOEH04
Description:
Event code: 3007
Event message: A compilation error has occurred.
Event time: 8/31/2009 11:23:24 AM
Event time (UTC): 8/31/2009 3:23:24 PM
Event ID: c9bb7c1195fb49c989b19c780fe66e2c
Event sequence: 21
Event occurrence: 1
Event detail code: 0
Application information:
Application domain: /LM/w3svc/1/ROOT/PIMS2008-5-128962057617439474
Trust level: Full
Application Virtual Path: /PIMS2008
Application Path: D:\TFS\PIMS\PIMS - Current\solutions\wwwroot\PIMS_2008\
Machine name: CA22665-FKOEH04
Process information:
Process ID: 4340
Process name: aspnet_wp.exe
Account name: CA22665-FKOEH04\ASPNET
Exception information:
Exception type: HttpCompileException
Exception message: D:\TFS\PIMS\PIMS - Current\solutions\wwwroot\PIMS_2008\UserProfileTreeViewTest.aspx(203): error BC30456: 'cbViewLocation_CheckedChanged' is not a member of 'ASP.userprofiletreeviewtest_aspx'.
Request information:
Request URL: http://localhost/PIMS2008/UserProfileTreeViewTest.aspx
Request path: /PIMS2008/UserProfileTreeViewTest.aspx
User host address: 127.0.0.1
User: fkoehlmann
Is authenticated: True
Authentication Type: Forms
Thread account name: CA22665-FKOEH04\ASPNET
Thread information:
Thread ID: 1
Thread account name: CA22665-FKOEH04\ASPNET
Is impersonating: False
Stack trace: at System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath)
at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile)
at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile)
at System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean noAssert)
at System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp, Boolean noAssert)
at System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
at System.Web.UI.PageHandlerFactory.System.Web.IHttpHandlerFactory2.GetHandler(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig)
at System.Web.HttpApplication.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
Custom event details:
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
I have reviewed some of the forums messages and it seems that some people have had difficulty when combining the older classic controls with the newer ajax ones, but I didn't see anything like this. Do I need to update my old controls? If so what issue will I encounter when upgrading the RadGrid?
Thanks, Fred.
| <telerik:RadListBox ID="RadListBoxContacts" runat="server" Skin="Telerik" AutoPostBack="true" |
| AutoPostBackOnTransfer="true" DataKeyField="contactID" DataTextField="Description" |
| Width="240px" Height="200px" AllowTransfer="true" TransferToID="RadListBoxServiceContacts" |
| ButtonSettings-ShowTransferAll="false" EnableViewState ="true"> |
| <ButtonSettings ShowTransferAll="False" /> |
| </telerik:RadListBox> |
| <telerik:RadListBox ID="RadListBoxServiceContacts" runat="server" Skin="Telerik" |
| DataKeyField="contactID" DataTextField="Description" Width="245px" Height="200px" |
| AutoPostBack="True" EnableViewState ="true" > |
| </telerik:RadListBox> |
| Private Sub RadListBoxServiceContacts_Deleted(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadListBoxEventArgs) Handles RadListBoxServiceContacts.Deleted |
| Session("Avalability") = "Delete" |
| Me.lblServiceContactDescription.Text = "Select a contact to view details" |
| Me.lblServiceContactDetails.Text = "" |
| End Sub |
| Private Sub RadListBoxServiceContacts_Inserted(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadListBoxEventArgs) Handles RadListBoxServiceContacts.Inserted |
| Session("Avalability") = "Insert" |
| Me.lblContactDescription.Text = "Select a contact to view details" |
| Me.lblContactDetails.Text = "" |
| End Sub |
| Private Sub RadListBoxContacts_Transferred(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadListBoxTransferredEventArgs) Handles RadListBoxContacts.Transferred |
| Dim contactID As String = CStr(e.SourceListBox.SelectedItem.DataKey) |
| Dim serviceID As String = CStr(Me.RadListBoxServices.SelectedItem.DataKey) |
| If CStr(Session("Avalability")) = "Delete" Then |
| objWebService.removeContactFromService(contactID, serviceID) |
| ElseIf CStr(Session("Avalability")) = "Insert" Then |
| objWebService.addContactToService(contactID, serviceID) |
| End If |
| Me.RadListBoxContacts.Items.Clear() |
| Me.RadListBoxServiceContacts.Items.Clear() |
| Me.RadListBoxServiceContacts.DataSource = objWebService.getServicesContacts(CInt(Me.RadListBoxServices.DataKeys.Item(Me.RadListBoxServices.SelectedIndex))) |
| Me.RadListBoxServiceContacts.DataBind() |
| Me.RadListBoxContacts.DataSource = objWebService.getEmployeeContactsNotInService(CInt(Me.RadListBoxServices.DataKeys.Item(Me.RadListBoxServices.SelectedIndex)), Me.RadComboBoxSelectedEmployee.SelectedValue, "") |
| Me.RadListBoxContacts.DataBind() |
| End Sub |