Files
luos/workflow/engine/xmlform/cases/cases_Scheduler_Options.xml
Victor Saisa Lopez 1b048aa7d5 BUG 8386 "Need to increase width of <td class='tableOption..." SOLVED
- Need to increase width of <td class="tableOption"> holding "New" for
  longer translations
- Increased width for the tag 'td'
2012-06-18 18:11:56 -04:00

47 lines
1.5 KiB
XML
Executable File

<?xml version="1.0" encoding="UTF-8"?>
<dynaForm type="xmlmenu">
<PRO_UID type="private"/>
<cases_Scheduler_New type="private" defaultValue="../cases/cases_Scheduler_New"/>
<cases_Scheduler_Edit type="private" defaultValue="../cases/cases_Scheduler_Edit"/>
<cases_Scheduler_Delete type="private" defaultValue="../cases/cases_Scheduler_Delete"/>
<PAGED_TABLE_ID type="private"/>
<SEARCH_FILTER_FORM type="private"/>
<MNU_ADD type="link" value="" link="javascript:newScheduler();" onclick="" colAlign="left" colWidth="100">
<en>New</en>
</MNU_ADD>
<PAGED_TABLE_ID type="private"/>
<PAGED_TABLE_FAST_SEARCH type="FastSearch" label=""/>
<MNU_FAST_SEARCH type="button" label="@G::LoadTranslation(ID_SEARCH)" colAlign="right" colWidth="50" onclick="@#PAGED_TABLE_ID.doFastSearch(getField(&#039;PAGED_TABLE_FAST_SEARCH&#039;,this.form).value);"/>
<JS type="javascript"><![CDATA[
function $_GET(q,s) {
s = (s) ? s : self.location.search;
var re = new RegExp('&'+q+'=([^&]*)','i');
return (s=s.replace(/^\?/,'&').match(re)) ? s=s[1] : s='';
}
function newScheduler() {
window.location = 'cases_Scheduler_New?PRO_UID='+$_GET('PRO_UID'); return false;
}
function casesSchedulerDelete(schUID,proUid) {
ajax_function('cases_Scheduler_Delete','','SCH_UID='+encodeURIComponent(schUID),'GET') ;
// @#PAGED_TABLE_ID.refresh();
window.location = 'cases_Scheduler_List?PRO_UID='+proUid;
}
function editCaseScheduler(SCH_UID,PRO_UID)
{
window.location = 'cases_Scheduler_Edit?SCH_UID='+SCH_UID+'&PRO_UID='+PRO_UID;
return false;
}
]]></JS>
</dynaForm>