or
<%@ Page Language="VB" AutoEventWireup="TRUE" CodeFile="Default3.aspx.vb" Inherits="Default3" %><%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %><!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 id="Head1" runat="server"> <title></title></head><body> <form id="form1" runat="server"><telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <div id="qsfexWrapper"> <br /> <br /> <table cellpadding="0" cellspacing="0" class="style1"> <tr> <td style="padding: 3px"> <asp:Label ID="Label1" runat="server" AssociatedControlID="RadComboBox1">Account:</asp:Label> </td> <td style="padding: 3px"> <telerik:RadComboBox ID="RadComboBox1" runat="server" Width="300px" OnClientSelectedIndexChanging="Loadterminals" OnItemsRequested="RadComboBox1_ItemsRequested" /> </td> </tr> <tr> <td style="padding: 3px"> <asp:Label ID="Label2" runat="server" AssociatedControlID="RadComboBox2">Terminal:</asp:Label> </td> <td style="padding: 3px"> <telerik:RadComboBox ID="RadComboBox2" runat="server" Width="186px" OnClientSelectedIndexChanging="Loadfleets" OnClientItemsRequested="ItemsLoaded" OnItemsRequested="RadComboBox2_ItemsRequested" /> </td> </tr> <tr> <td style="padding: 3px"> <asp:Label ID="Label3" runat="server" AssociatedControlID="RadComboBox3">Fleet:</asp:Label> </td> <td style="padding: 3px"> <telerik:RadComboBox ID="RadComboBox3" runat="server" Width="186px" OnClientItemsRequested="ItemsLoaded" OnItemsRequested="RadComboBox3_ItemsRequested" /> </td> </tr> <tr> <td style="padding: 3px"> </td> <td style="padding: 3px"> </td> </tr> </table> <br /> <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1"><MasterTableView AutoGenerateColumns="False" DataKeyNames="IDVehicles" DataSourceID="SqlDataSource1"><CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings><RowIndicatorColumn><HeaderStyle Width="20px"></HeaderStyle></RowIndicatorColumn><ExpandCollapseColumn><HeaderStyle Width="20px"></HeaderStyle></ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn DataField="IDVehicles" DataType="System.Guid" HeaderText="IDVehicles" ReadOnly="True" SortExpression="IDVehicles" UniqueName="IDVehicles"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="IDProfileFleet" DataType="System.Int32" HeaderText="IDProfileFleet" SortExpression="IDProfileFleet" UniqueName="IDProfileFleet"> </telerik:GridBoundColumn> </Columns></MasterTableView> </telerik:RadGrid> <br /> <br /> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:CF_SQL_Connection %>" SelectCommand="SELECT [IDVehicles], [IDProfileFleet] FROM [CF_Vehicles] WHERE ([IDProfileFleet] = @IDProfileFleet)"> <SelectParameters> <asp:ControlParameter ControlID="RadComboBox3" Name="IDProfileFleet" PropertyName="SelectedValue" Type="Int32" /> </SelectParameters> </asp:SqlDataSource> <br /> </div> <script type="text/javascript"> var terminalsCombo; var fleetsCombo; function pageLoad() { terminalsCombo = $find("<%= RadComboBox2.ClientID %>"); fleetsCombo = $find("<%= RadComboBox3.ClientID %>"); } function Loadterminals(combo, eventArqs) { var item = eventArqs.get_item(); terminalsCombo.set_text("Loading..."); fleetsCombo.clearSelection(); if (item.get_index() > 0) { terminalsCombo.requestItems(item.get_value(), false); } else { terminalsCombo.set_text(" "); terminalsCombo.clearItems(); fleetsCombo.set_text(" "); fleetsCombo.clearItems(); } } function Loadfleets(combo, eventArqs) { var item = eventArqs.get_item(); fleetsCombo.set_text("Loading..."); fleetsCombo.requestItems(item.get_value(), false); } function ItemsLoaded(combo, eventArqs) { if (combo.get_items().get_count() > 0) { combo.set_text(combo.get_items().getItem(0).get_text()); combo.get_items().getItem(0).highlight(); } combo.showDropDown(); } </script> </form></body></html>Imports SystemImports System.DataImports System.Data.SqlClientImports System.ConfigurationImports Telerik.Web.UIPartial Class Default3 Inherits System.Web.UI.Page Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) If Not Page.IsPostBack Then Loadaccounts() End If End Sub Protected Sub Loadaccounts() Dim connection As New SqlConnection(ConfigurationManager.ConnectionStrings("CF_SQL_Connection").ConnectionString) Dim adapter As New SqlDataAdapter("SELECT * FROM [CF_Profile_Account] ORDER BY [AccountName]", connection) Dim dt As New DataTable() adapter.Fill(dt) RadComboBox1.DataTextField = "AccountName" RadComboBox1.DataValueField = "IDProfileAccount" RadComboBox1.DataSource = dt RadComboBox1.DataBind() RadComboBox1.Items.Insert(0, New RadComboBoxItem("- Select Account -")) End Sub Protected Sub Loadterminals(ByVal IDProfileAccount As String) Dim connection As New SqlConnection(ConfigurationManager.ConnectionStrings("CF_SQL_Connection").ConnectionString) Dim adapter As New SqlDataAdapter("SELECT * FROM [CF_Profile_Terminal] WHERE ([IDProfileAccount] = @IDProfileAccount) ORDER BY [TerminalName]", connection) adapter.SelectCommand.Parameters.AddWithValue("@IDProfileAccount", IDProfileAccount) Dim dt As New DataTable() adapter.Fill(dt) RadComboBox2.DataTextField = "TerminalName" RadComboBox2.DataValueField = "IDProfileTerminal" RadComboBox2.DataSource = dt RadComboBox2.DataBind() End Sub Protected Sub Loadfleets(ByVal IDProfileTerminal As String) Dim connection As New SqlConnection(ConfigurationManager.ConnectionStrings("CF_SQL_Connection").ConnectionString) Dim adapter As New SqlDataAdapter("SELECT * FROM [CF_Profile_Fleet] WHERE ([IDProfileTerminal] = @IDProfileTerminal)", connection) adapter.SelectCommand.Parameters.AddWithValue("@IDProfileTerminal", IDProfileTerminal) Dim dt As New DataTable() adapter.Fill(dt) RadComboBox3.DataTextField = "FleetName" RadComboBox3.DataValueField = "IDProfileFleet" RadComboBox3.DataSource = dt RadComboBox3.DataBind() End Sub Protected Sub RadComboBox1_ItemsRequested(ByVal o As Object, ByVal e As RadComboBoxItemsRequestedEventArgs) Handles RadComboBox1.ItemsRequested Loadaccounts() End Sub Protected Sub RadComboBox2_ItemsRequested(ByVal o As Object, ByVal e As RadComboBoxItemsRequestedEventArgs) Handles RadComboBox2.ItemsRequested Loadterminals(e.Text) End Sub Protected Sub RadComboBox3_ItemsRequested(ByVal o As Object, ByVal e As RadComboBoxItemsRequestedEventArgs) Handles RadComboBox3.ItemsRequested Loadfleets(e.Text) End SubEnd Class
function showMenuC(e) { var contextMenu1 = $find("<%= RadContextC1.ClientID %>"); contextMenu1.showAt(20, 135); $telerik.cancelRawEvent(e);}<asp:ImageButton ID="imgContractBtn1" Visible="true" OnClientClick="showMenuC(event);" ImageUrl="/images/someimage.png" runat="server" /><Telerik:RadContextMenu id="RadContextC1" runat="server" EnableViewState="false" EnableRoundedCorners="true" EnableShadows="true" OnClientItemOpened="itemOpened" > <Items> <telerik:RadMenuItem CssClass="Contracts" text="ContractSelectie"> <ItemTemplate> <div id="CatWrapper" class="Wrapper"> <telerik:RadListView ID="RLVContractSelectie1" runat="server" AllowPaging="false" EnableAjaxSkinRendering="true" RegisterWithScriptManager="true" EnableViewState="false" OnItemDataBound="RLVContracts_ItemDataBound" GroupItemCount="1" AllowMultiItemSelection="false" onneeddatasource="RLVContracts_NeedDataSource"> <ItemTemplate> <fieldset class="myClass"> <div id="div-image"> <asp:ImageButton ID="Image1" runat="server" SkinID="imgNoPicture" CssClass="imageStyle" /> </div> <div id="textbox"> some text </div> <div id="div-masker"> <asp:ImageButton ID="imgMasker" CommandName="Select" CommandArgument='<%#DataBinder.Eval(Container.DataItem, "intContractPID")%>' runat="server" SkinID="imgMasker" CssClass="imageStyleMasker" /> </div> </fieldset> </ItemTemplate> </telerik:RadListView> </div> </ItemTemplate> </telerik:RadMenuItem> </Items></Telerik:RadContextMenu>for (double minute = 0; minute <= minutes; minute = minute + 15) { RadSliderItem radSliderItem; if (((int)minute) % 60 == 0) { radSliderItem = new RadSliderItem(workHoursStartDate.ToString("HH:mm"), minute.ToString()); radSliderItem.ToolTip = workHoursStartDate.ToString("HH:mm"); } else { radSliderItem = new RadSliderItem("", minute.ToString()); radSliderItem.ToolTip = workHoursStartDate.ToString("HH:mm"); } sliderTimeOffSlider.Items.Add(radSliderItem); workHoursStartDate = workHoursStartDate.AddMinutes(15); } for (double minute = 0; minute <= minutes; minute = minute + 15) { RadSliderItem radSliderItem; radSliderItem = new RadSliderItem(workHoursStartDate.ToString("HH:mm"), minute.ToString()); radSliderItem.ToolTip = workHoursStartDate.ToString("HH:mm"); sliderTimeOffSlider.Items.Add(radSliderItem); workHoursStartDate = workHoursStartDate.AddMinutes(15); }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. |
|
function RowDblClick(sender, eventArgs) { // inspect what column was clicked // if (columnindex in (3,6,7) { -- user clicked one of our editable columns, so allow edit sender.get_masterTableView().editItem(eventArgs.get_itemIndexHierarchical()); // }}<telerik:RadWindowManager ID="RadWindowManagerAlertIssue" runat="server" VisibleStatusbar="False" EnableEmbeddedSkins="false" Skin="DDC" Behaviors="Close" ShowContentDuringLoad="false" style="z-index: 1001" OnClientPageLoad="OnClientPageLoad" ReloadOnShow="true"> <Windows> <telerik:RadWindow ID="DialogAlertIssue" Modal="true" IconUrl="/_WebControlsResources/Images/Icons/edit.gif" AutoSize="true" runat="server"> </telerik:RadWindow> </Windows></telerik:RadWindowManager><div> <table width="470px" height="150px" border="0" cellspacing="0" cellpadding="0" style="background: #afafd7 url(/_WebControlsResources/Images/TooltipPanels/RadTooltipBlue/email.jpg) no-repeat top right;"> <tr> <td> </td> <td> </td> <td> <div style="padding: 5px;"> <table> <tr> <td style="color: #ffffff; font-size: 12px; font-weight: bold; padding-right: 10px; width: 1%; white-space: nowrap;" align="right" > <asp:Label ID="Label1" Text="Default Issue:" runat="server" Font-Bold="True" /> </td> <td style="color: #ffffff; font-size: 12px; font-weight: bold;" > <asp:CheckBox ID="cbxDefaultIssue" runat="server" /> <img height="16" width="16" align="absmiddle" style="padding-right: 5px;" src="/_WebControlsResources/Images/Icons/info_violet.gif"/> <span id="span1" runat="server" style="font-weight: bold; font-size: 11px;">Note: Only one issue can be flagged as the default.</span> </td> </tr> <tr> <td style="color: #ffffff; font-size: 12px; font-weight: bold; padding-right: 10px;" align="right"> <asp:Label ID="Label2" Text="Issue:" runat="server" Font-Bold="True" /> </td> <td style="color: #ffffff; font-size: 11px; font-weight: bold;" padding-left: 5px;"> <asp:Label ID="lblIssueName" runat="server" /> </td> </tr> <tr> <td style="color: #ffffff; font-size: 12px; font-weight: bold; padding-right: 10px;" align="right"> <asp:Label ID="Label3" Text="Description:" runat="server" Font-Bold="True" /> </td> <td colspan="2" style="color: #ffffff; font-size: 11px; font-weight: bold;"> <asp:Label ID="lblDescription" runat="server" /> </td> </tr> </table> </div> </td> </tr> <tr> <td colspan="4" height="36" valign="bottom"> <table height="36" border="0" align="center" cellpadding="0" cellspacing="0"> <tr valign="bottom"> <td class="Curved_Plinth_Left_BlueOnTransparent"> <img src="/_WebControlsResources/Images/spacer.gif" width="40" height="36"></td> <td valign="bottom" align="center" nowrap class="Curved_Plinth_Middle_Blue"> <span class="NewPillBtn_GreenOnPlinthBlue"> <asp:Button ID="ButtonSave" runat="server" Text="Save" OnClick="ButtonSave_Click" /> </span> </td> <td valign="bottom" align="left" width="1" nowrap class="Curved_Plinth_Middle_Blue"> <span class="NewPillBtn_BlueOnPlinthBlue"> <asp:Button ID="ButtonCancel" runat="server" Text="Cancel" OnClientClick="javascript:closeOnUpdate(false);" /> </span> </td> <td class="Curved_Plinth_Right_BlueOnTransparent"> <img src="/_WebControlsResources/Images/spacer.gif" width="40" height="36"></td> </tr> </table> </td> </tr> </table> </div>