| <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> |
| <%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head runat="server"> |
| <title></title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <div> |
| <telerik:RadScriptManager ID="RadScriptManager1" Runat="server"> |
| </telerik:RadScriptManager> |
| <asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder> |
| </div> |
| </form> |
| </body> |
| </html> |
| using System; |
| using System.Web.UI; |
| public partial class _Default : System.Web.UI.Page |
| { |
| protected void Page_Init(object sender, EventArgs e) |
| { |
| Control layout = LoadControl("Layout.ascx"); |
| if (layout != null) |
| { |
| PlaceHolder1.Controls.Add(layout); |
| } |
| } |
| } |
| <%@ Control Language="C#" AutoEventWireup="true" CodeFile="Layout.ascx.cs" Inherits="Layout" %> |
| <%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> |
| <telerik:RadDockLayout ID="DockLayout1" runat="server"> |
| <table border="1" cellpadding="0" width="800"> |
| <tr> |
| <td width="100%" valign="top"> |
| <telerik:RadDockZone ID="DockZone1" runat="server" BorderStyle="None"> |
| </telerik:RadDockZone> |
| </td> |
| </tr> |
| </table> |
| </telerik:RadDockLayout> |
| using System; |
| using System.Web.UI; |
| using Telerik.Web.UI; |
| public partial class Layout : System.Web.UI.UserControl |
| { |
| protected void Page_Init(object sender, EventArgs e) |
| { |
| //this causes error |
| RadDock dock = new RadDock(); |
| RadDockZone zone = FindControl("DockZone1") as RadDockZone; |
| zone.Controls.Add(dock); |
| } |
| protected void Page_Load(object sender, EventArgs e) |
| { |
| //this works |
| //RadDock dock = new RadDock(); |
| //RadDockZone zone = FindControl("DockZone1") as RadDockZone; |
| //zone.Controls.Add(dock); |
| } |
| } |
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|
| <RadComboBox ID="cbo" runat="server" |
| Filter="Contains" MarkFirstMatch="true" AllowCustomText="false" NoWrap="true"> |
| </RadComboBox> |
Hello,
I'm using IIS 7.0, I would like to ask the difference between the integrated mode pipeline and classic mode pipeline reated to the handlers for RadCaptcha (classic mode works without adding any handlers for RadCaptcha) in web.config? Any performance issue related? Or both just do the same thing?
Here's the handler that I should add in web.config for integrated mode:
<handlers>
<add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.CaptchaImageHandler" />
</handlers>
And what the difference between the type's values below:
<add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.CaptchaImageHandler" verb="*" validate="false" />
<
add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false"/>
Any answer or help for this would be appreciated.
Regards,
Omar Suria
| function OpenTreeToSpecificNodeRecursion() { |
| var tree = $find('<%= rpbOperational.Items[0].Items[0].FindControl("rtGeographic").ClientID %>'); |
| if (aIds2Node.length == 0) { |
| return; |
| } |
| if (tree.findNodeByValue(aIds2Node[0]) != null) { |
| nodeTree = tree.findNodeByValue(aIds2Node.shift()); |
| if (aIds2Node.length == 0) { |
| tree.unselectAllNodes(); |
| nodeTree.select(); |
| window.setTimeout(function() { nodeTree.scrollIntoView(); }, 400); |
| return; |
| } |
| nodeTree.expand(); |
| } |
| window.setTimeout("OpenTreeToSpecificNodeRecursion()", 10); |
| } |
Hello
I use RadGrid with
<
telerik:GridDateTimeColumn DataField="DT_REPORT"
HeaderText="Data Report" PickerType="DatePicker"
DataFormatString="{0:d}" EmptyDataText="30/09/2009" >
<FooterStyle Width="85" />
<HeaderStyle Width="85" />
<ItemStyle Width="85" />
</telerik:GridDateTimeColumn>
<
telerik:GridDateTimeColumn DataField="DT_INIZIO"
HeaderText="Data Inizio" PickerType="DatePicker" DataFormatString="{0:d}">
<FooterStyle Width="85" />
<HeaderStyle Width="85" />
<ItemStyle Width="85" />
</telerik:GridDateTimeColumn>
The issue is when I'm in edit mode, after pressing the first GridDateTimeColumn , the second one became in block state (calendar menu does't apper)
Can you explain this for me ?
There is also one of yours example and there is the same problem.
Is that a bug?
Thanks,
Silvia