/
var
/
www
/
html
/
sugardemo
/
modules
/
TeamNotices
/
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} <form name="EditView" id="EditView" method="POST" action="index.php"> {sugar_csrf_form_token} <input type="hidden" name="module" value="TeamNotices"> <input type="hidden" name="record" value="{ID}"> <input type="hidden" name="action"> <input type="hidden" name="edit"> <input type="hidden" name="return_module" value="TeamNotices"> <input type="hidden" name="return_action" value="index"> <input type="hidden" name="return_id" value=""> <div class="actionsContainer"> {ACTION_BUTTON} </div> <table width="100%" cellspacing="1" cellpadding="0" border="0" class="edit view"> <tr> <td width="15%"scope="row" valign="top" nowrap><slot>{MOD.LBL_DATE_START} <span class="required">{APP.LBL_REQUIRED_SYMBOL}</span></slot></td> <td width="32%" valign="top" nowrap><slot><input name='date_start' id='jscal_field' onblur="parseDate(this, '{CALENDAR_DATEFORMAT}');" tabindex='1' size='11' maxlength='10' type="text" value="{DATE_START}"> <img src="index.php?entryPoint=getImage&themeName={THEME}&imageName=jscalendar.gif" alt="{APP.LBL_ENTER_DATE}" id="jscal_trigger" align="absmiddle"> </slot></td> <!-- BEGIN: pro --> <td scope="row" width="10%"><slot>{APP.LBL_TEAM} <span class="required">{APP.LBL_REQUIRED_SYMBOL}</span></slot></td> <td ><slot>{TEAM_SET_FIELD}</slot> </td> <!-- END: pro --> <!-- BEGIN: open_source --> <!-- END: open_source --> </tr><tr> <td width="15%" scope="row" align='left' valign="top" nowrap><slot>{MOD.LBL_DATE_END} <span class="required">{APP.LBL_REQUIRED_SYMBOL}</span></slot></td> <td width="32%" align='left' valign="top" nowrap><slot><input name='date_end' id='jscal_field_end' onblur="parseDate(this, '{CALENDAR_DATEFORMAT}');" tabindex='1' size='11' maxlength='10' type="text" value="{DATE_END}"> <img src="index.php?entryPoint=getImage&themeName={THEME}&imageName=jscalendar.gif" alt="{APP.LBL_ENTER_DATE}" id="jscal_trigger_end" align="absmiddle"> </slot></td> <td width="10%" scope="row" nowrap><slot>{MOD.LBL_STATUS}: <span class="required">{APP.LBL_REQUIRED_SYMBOL}</span></slot></td> <td width="25%" ><slot><select tabindex="2" name='status'>{STATUS_OPTIONS}</select></slot></td> </tr> <tr> <td width="15%" scope="row"><slot>{MOD.LBL_NAME}: <span class="required">{APP.LBL_REQUIRED_SYMBOL}</span></slot></td> <td width="50%"><slot><input name='name' tabindex='3' size='70' maxlength='50' type="text" value="{NAME}"></slot></td> </tr> <tr> <td width="15%" valign='top' scope="row"><slot>{MOD.LBL_DESCRIPTION}:</slot></td> <td width="50%" ><slot><textarea cols="50" rows="8" name='description' tabindex='3' onchange='this.value=cleanQuotes(this.value);'>{DESCRIPTION}</textarea></slot></td> </tr> <tr> <td valign='top' scope="row"><slot>{MOD.LBL_URL_TITLE}:</slot></td> <td><slot><input name='url_title' value='{URL_TITLE}' type='text' maxlength="255" size='70' tabindex='4'></slot></td> </tr> <tr> <td valign='top' scope="row"><slot>{MOD.LBL_URL}:</slot></td> <td><slot><input name='url' value='{URL}' type='text' maxlength="255" size='70' tabindex='4'></slot></td> </tr> </table> </form> <script type="text/javascript"> function cleanQuotes(str) { while(str.indexOf('"') > -1) str = str.replace('"', "''" ); return str; } Calendar.setup ({ inputField : "jscal_field", daFormat : "{CALENDAR_DATEFORMAT}", ifFormat : "{CALENDAR_DATEFORMAT}", showsTime : false, button : "jscal_trigger", singleClick : true, step : 1 }); Calendar.setup ({ inputField : "jscal_field_end", daFormat : "{CALENDAR_DATEFORMAT}", ifFormat : "{CALENDAR_DATEFORMAT}", showsTime : false, button : "jscal_trigger_end", singleClick : true, step : 1 }); </script> {JAVASCRIPT} <!-- END: main -->