/
var
/
www
/
html
/
sugar14
/
modules
/
CampaignTrackers
/
Upload File
HOME
<!-- /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ --> <!-- BEGIN: main --> {PAGE_TITLE} <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td> <form name="EditView" method="POST" action="index.php" enctype="multipart/form-data"> {sugar_csrf_form_token} <input type="hidden" name="module" value="CampaignTrackers"> <input type="hidden" name="record" value="{ID.ESCAPE_HTML_ATTR}"> <input type="hidden" name="action"> <input type="hidden" name="campaign_id" value ="{CAMPAIGN_ID.ESCAPE_HTML_ATTR}"> <input type="hidden" name="return_module" value="{RETURN_MODULE.ESCAPE_HTML_ATTR}"> <input type="hidden" name="return_id" value="{RETURN_ID.ESCAPE_HTML_ATTR}"> <input type="hidden" name="return_action" value="{RETURN_ACTION.ESCAPE_HTML_ATTR}"> <input title="{APP.LBL_SAVE_BUTTON_TITLE.ESCAPE_HTML_ATTR}" accessKey="{APP.LBL_SAVE_BUTTON_KEY.ESCAPE_HTML_ATTR}" class="button" onclick="this.form.action.value='Save'; return check_form('EditView');" type="submit" name="save_button" id="save_button" value=" {APP.LBL_SAVE_BUTTON_LABEL.ESCAPE_HTML_ATTR} " > <input title="{APP.LBL_CANCEL_BUTTON_TITLE.ESCAPE_HTML_ATTR}" accessKey="{APP.LBL_CANCEL_BUTTON_KEY.ESCAPE_HTML_ATTR}" class="button" onclick="this.form.action.value='{RETURN_ACTION.ESCAPE_JS}'; this.form.module.value='{RETURN_MODULE.ESCAPE_JS}'; this.form.record.value='{RETURN_ID.ESCAPE_JS}'" type="submit" name="cancel_button" id="cancel_button" value=" {APP.LBL_CANCEL_BUTTON_LABEL.ESCAPE_HTML_ATTR} "></td> <td align="right" nowrap><span class="required">{APP.LBL_REQUIRED_SYMBOL.ESCAPE_HTML}</span> {APP.NTC_REQUIRED.ESCAPE_HTML}</td> <td align='right'>{ADMIN_EDIT}</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="edit view"> <tr> <td> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="15%" scope="row"><slot>{MOD.LBL_EDIT_CAMPAIGN_NAME.ESCAPE_HTML}</slot></td> <td width="85%" colspan=3><slot>{CAMPAIGN_NAME.ESCAPE_HTML}</slot></td> </tr> <tr> <td width="15%" scope="row"><slot>{MOD.LBL_EDIT_TRACKER_NAME.ESCAPE_HTML}<span class="required"> {APP.LBL_REQUIRED_SYMBOL.ESCAPE_HTML}</span></slot></td> <td width="35%" ><slot><input type="text" size="30" tabindex='1' name="tracker_name" id="tracker_name" value="{TRACKER_NAME.ESCAPE_HTML_ATTR}"></slot></td> <td width="15%" scope="row"><slot>{MOD.LBL_EDIT_OPT_OUT.ESCAPE_HTML}</slot></td> <td width="35%" ><slot><input onclick="toggle_tracker_url(this);" name="is_optout" id="is_optout" tabindex='2' class="checkbox" type="checkbox" {IS_OPTOUT_CHECKED}/></slot></td> </tr> <tr> <td width="15%" scope="row"><slot>{MOD.LBL_EDIT_TRACKER_URL.ESCAPE_HTML} <span class="required">{APP.LBL_REQUIRED_SYMBOL.ESCAPE_HTML}</span></slot></td> <td width="85%" colspan=3><slot><input type="text" size="100" maxlength='255' tabindex='3' {TRACKER_URL_DISABLED} name="tracker_url" id="tracker_url" value="{TRACKER_URL.ESCAPE_HTML_ATTR}"></slot></td> </tr> </td></tr></table> {JAVASCRIPT} <script> function toggle_tracker_url(isoptout) { tracker_url = document.getElementById('tracker_url'); if (isoptout.checked) { tracker_url.disabled=true; tracker_url.value="index.php?entryPoint=removeme"; } else { tracker_url.disabled=false; } } </script> <!-- END: main -->