or
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. |
|
<
telerik:GridNumericColumn UniqueName="freightRate" SortExpression="freightRate"
HeaderText="Freight Rate" DataField="freightRate" ColumnEditorID="GridNumericColumnEditor1"
FooterText="Freight Rate" NumericType="Currency" DataType="System.Decimal">
</telerik:GridNumericColumn>

if (e.Item is GridDataItem) { foreach (TableCell cell in e.Item.Cells) { if (cell.Text != " ") cell.ToolTip = cell.Text; } }<%@ Page Language="C#" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><script runat="server"> protected override void OnLoad(EventArgs e) { base.OnLoad(e); }</script><html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1" runat="server"><title></title><style>html, body, form{ height: 100%; margin: 0px; padding: 0px; overflow: hidden;}body { background-color:#FFFFFF; font-size:12px; font-family:Arial; direction:rtl;} #main { height: 100% }</style></head><body> <form id="form2" runat="server"> <asp:ScriptManager ID="ScriptManager" runat="server"> <Scripts> <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> </Scripts> </asp:ScriptManager> <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" EnableOutsideScripts="true" EnablePageHeadUpdate="False"> </telerik:RadAjaxManager> <div id="main"> <asp:Panel runat="server" Height="45"> header </asp:Panel> <asp:Panel runat="server" Height="100%"> <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" /> <telerik:RadSplitter ID="NestedSplitter" runat="server" LiveResize="true" Height="100%" Width="100%"> <telerik:RadPane ID="LeftPane" runat="server" Width="200" MinWidth="150" MaxWidth="400"> main menu </telerik:RadPane> <telerik:RadSplitBar ID="VerticalSplitBar" runat="server" CollapseMode="Backward" /> <telerik:RadPane ID="ContentPane" runat="server"> <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1"> <telerik:RadSplitter ID="MainSplitter" runat="server" Height="100%" Width="100%" Orientation="Horizontal"> <telerik:RadPane ID="TopPane" runat="server" Scrolling="Y" Height="30%" MinHeight="100" CssClass="TopPane"> top content </telerik:RadPane> <telerik:RadSplitBar ID="RadsplitbarTop" runat="server" CollapseMode="Forward" /> <telerik:RadPane ID="MainPane" runat="server" Scrolling="Y" Height="70%"> edit content </telerik:RadPane> </telerik:RadSplitter> </telerik:RadAjaxPanel> </telerik:RadPane> </telerik:RadSplitter> </asp:Panel> </div> </form></body></html>