﻿<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Preferred Days Checkbox Selector</title>
    <!-- NOTE: ClientGlobalContext.js.aspx URL below is set with ../../ because the web resource that needs it is installed in a 2 level folder structure -->
    <script type="text/javascript" src="../../ClientGlobalContext.js.aspx"></script>
    <!-- Telerik KendoUI is required by this application, CRM must contain the Tribridge Adoption Essentials component "TribridgeIPCRMKuiFrameworkNS_Managed_2015_4_0001_target_CRM_7.0"  --> 
    <script type="text/javascript" src="../../triipcrm_/TR_KU_V2015_2_902/js/jquery.min.js"></script>
    <!-- Preferred Days Selector Custom Stylesheet -->
    <link href="css/PreferredDaysSelectorStyle.css" rel="stylesheet" />
    <!--Control Library /-->
    <script type="text/javascript" src="js/PreferredDaysSelectorScriptLib.js"></script>
</head>
<body class ="PreferredDaysSelectorForm">
    <div id="pds_checkboxList" tabindex="0"></div>

    <script type="text/javascript">
        $(document).ready(function ($) {
            //Actions/Functions to execute as soon as the form is at a ready state.
            try {
                //Construct the initial CRM OptionSet as Checkbox control
                pds_formLoad();
            }
            catch (err) {
                //Display Error....
                alert("PreferredDaysSelector.html Script Document Ready Error: " + err.message);
            }
        });
    </script>
</body>
</html>
 