HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/RMourik/bassol.nl/CMS/CMSModules/Ecommerce/FormControls/SelectSKUBinding.ascx
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="SelectSKUBinding.ascx.cs"
    Inherits="CMSModules_Ecommerce_FormControls_SelectSKUBinding" %>
<%@ Register TagPrefix="cms" TagName="SKUSelector" Src="~/CMSModules/Ecommerce/FormControls/SKUSelector.ascx" %>
<div class="form-horizontal" role="form">
    <div class="form-group">
        <div class="editing-form-label-cell">
            <cms:LocalizedLabel ID="lblCreate" runat="server" CssClass="control-label" ResourceString="com.selectskubinding.create" DisplayColon="true" EnableViewState="false" />
        </div>
        <div class="editing-form-value-cell">
            <div class="radio-list-vertical">
                <%-- Create new --%>
                <div class="radio">
                    <cms:CMSRadioButton ID="radCreateNew" runat="server" OnCheckedChanged="radioButton_CheckedChanged" ResourceString="com.selectskubinding.createnew"
                        GroupName="SelectSKUBindingRadioGroup" Checked="true" AutoPostBack="true" />
                </div>
                <%-- Create new global --%>
                <asp:Panel ID="pnlCreateNewGlobal" runat="server" CssClass="radio" Visible="false">
                    <cms:CMSRadioButton ID="radCreateNewGlobal" runat="server" OnCheckedChanged="radioButton_CheckedChanged" ResourceString="com.selectskubinding.createnewglobal"
                        GroupName="SelectSKUBindingRadioGroup" AutoPostBack="true" />
                </asp:Panel>
                <%-- Use existing --%>
                <div class="radio">
                    <cms:CMSRadioButton ID="radUseExisting" runat="server" OnCheckedChanged="radioButton_CheckedChanged" ResourceString="com.selectskubinding.useexisting"
                        GroupName="SelectSKUBindingRadioGroup" Visible="false" AutoPostBack="true" />
                </div>
                <asp:Panel ID="pnlSkuSelector" runat="server" CssClass="selector-subitem" Visible="false">
                    <cms:SKUSelector runat="server" ID="skuSelectorElem" IsLiveSite="false" />
                </asp:Panel>
                <%-- Do not create --%>
                <asp:Panel ID="pnlDoNotCreate" runat="server" CssClass="radio" Visible="false">
                    <cms:CMSRadioButton ID="radDoNotCreate" runat="server" OnCheckedChanged="radioButton_CheckedChanged" ResourceString="com.selectskubinding.donotcreate"
                        GroupName="SelectSKUBindingRadioGroup" AutoPostBack="true" />
                </asp:Panel>
            </div>
            <cms:LocalizedLabel ID="lblInfo" runat="server" Visible="false" CssClass="explanation-text"></cms:LocalizedLabel>
        </div>
    </div>
</div>