Issue:
Change folder permissions in ProcessMaker
Cause:
Nuevo requerimiento
Solution:
Se cambio los permisos de los files and directories
157 lines
5.4 KiB
HTML
157 lines
5.4 KiB
HTML
<!-- START BLOCK : headBlock -->
|
|
<div class="treeBase">
|
|
<table cellpadding="0" cellspacing="0" border="0"><tr><td>
|
|
<div class="boxTop"><div class="a"></div><div class="b"></div><div class="c"></div></div>
|
|
<div class="pagedTableDefault">
|
|
<table id="pagedtable[{pagedTable_Id}]" name="pagedtable[{pagedTable_Name}]" border="0" cellspacing="0" cellpadding="0" class="Default">
|
|
<tr >
|
|
<td valign="top">
|
|
|
|
<span class='subtitle'>{title}</span>
|
|
<table cellspacing="0" cellpadding="0" width="100%" border="0">
|
|
<!-- START BLOCK : headerBlock -->
|
|
<tr><td class="headerContent">{content}</td></tr>
|
|
<!-- END BLOCK : headerBlock -->
|
|
</table>
|
|
<table id="table[{pagedTable_Id}]" name="table[{pagedTable_Name}]" cellspacing="0" cellpadding="0" width="100%" class="pagedTable">
|
|
<!-- END BLOCK : headBlock -->
|
|
<!-- START BLOCK : contentBlock -->
|
|
<script type="text/javascript">{pagedTable_JS}</script>
|
|
<tr>
|
|
<!-- START BLOCK : headers -->
|
|
<td class="pagedTableHeader"><img style="{displaySeparator}" src="/js/maborak/core/images/separatorTable.gif" /></td>
|
|
<td width="{width}" style="{align}" class="pagedTableHeader" >
|
|
<a href="{href}" onclick="{onclick}{onsort}">{header} </a>
|
|
</td>
|
|
<!-- END BLOCK : headers -->
|
|
</tr>
|
|
|
|
|
|
|
|
<!-- START BLOCK : row -->
|
|
|
|
<!-- START BLOCK : rowMaster -->
|
|
<tr class='{masterRowClass}' id="{masterRowName}">
|
|
<!-- START BLOCK : fieldMaster -->
|
|
<td class="pagedTableHeader1"><a href="#" ><img src="/images/minus.gif" onClick="toggleMasterDetailGroup('table[{pagedTable_Name}]','{masterRowName}',this);return false;" border="0"></a><b>{value1}</b></td><td class="pagedTableHeader1" {alignAttr}><b>{value}</b> </td>
|
|
<!-- END BLOCK : fieldMaster -->
|
|
</tr>
|
|
<!-- END BLOCK : rowMaster -->
|
|
|
|
<tr class='{class}' onmouseover="setRowClass(this, 'RowPointer' )" onmouseout="setRowClass(this, '{class}')" name="{rowName}" id="{rowName}">
|
|
<!-- START BLOCK : field -->
|
|
<td{classAttr}></td><td{classAttr}{alignAttr}>{value}</td>
|
|
<!-- END BLOCK : field -->
|
|
</tr>
|
|
<!-- END BLOCK : row -->
|
|
|
|
|
|
<!-- START BLOCK : rowTag -->
|
|
<!-- END BLOCK : rowTag -->
|
|
|
|
<!-- START BLOCK : norecords -->
|
|
<tr class='Row2'>
|
|
<td nowrap colspan="{columnCount}" align='center' >
|
|
{noRecordsFound}<br>
|
|
</td>
|
|
</tr>
|
|
<!-- END BLOCK : norecords -->
|
|
|
|
<!-- START BLOCK : bottomFooter -->
|
|
<tr>
|
|
<td class="treeNode" colspan="6" align="right" >
|
|
|
|
<a href="#" onclick="checkAll()">{labels:CHECK_ALL}</a> / 
|
|
<a href="#" onclick="uncheckAll()">{labels:UNCHECK_ALL}</a> / 
|
|
<a href="#" onclick="toReassignPanel()">{labels:ID_REASSIGN}</a>
|
|
<!-- <input style="" class="module_app_button___gray " id="form[BTN_SUBMIT]" name="form[BTN_SUBMIT]" value="Assign" onclick="selectionX();" type="button"> -->
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td nowrap colspan="{columnCount}">
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr class="pagedTableFooter">
|
|
<td width="110px" style="{indexStyle}">
|
|
{labels:ID_ROWS} {firstRow}-{lastRow}/{totalRows}
|
|
</td>
|
|
<!--<td style="text-align:center;{fastSearchStyle}"><!--{labels:ID_SEARCH}
|
|
<input type="text" class="FormField" onkeypress="if (event.keyCode===13){pagedTableId}.doFastSearch(this.value);if (event.keyCode===13)return false;" value="{fastSearchValue}" onfocus="this.select();" size="10" style="{fastSearchStyle}"/>
|
|
</td>-->
|
|
<td style="text-align:center;">
|
|
{first}{prev}{next}{last}
|
|
</td>
|
|
<td width="60px" style="text-align:right;padding-right:8px;{indexStyle}">{labels:ID_PAGE} {currentPage}/{totalPages}</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<!-- END BLOCK : bottomFooter -->
|
|
<!-- END BLOCK : contentBlock -->
|
|
<!-- START BLOCK : closeBlock -->
|
|
</table>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="boxBottom"><div class="a"></div><div class="b"></div><div class="c"></div></div>
|
|
</td></tr></table></div>
|
|
<!-- END BLOCK : closeBlock -->
|
|
<!-- START IGNORE -->
|
|
|
|
<script type="text/javascript">
|
|
if (typeof(checks_selected_ids) == "undefined"){
|
|
var checks_selected_ids = new Array();
|
|
}
|
|
|
|
function catchSelectedItems(){
|
|
var inputs = document.getElementsByTagName("input");
|
|
|
|
for(i=0; i<inputs.length; i++){
|
|
if( inputs[i].type == "checkbox" ){
|
|
try{
|
|
|
|
inputs[i].onclick = function(){
|
|
if(this.checked){
|
|
checks_selected_ids.push(this.value);
|
|
} else {
|
|
checks_selected_ids.deleteByValue(this.value);
|
|
}
|
|
};
|
|
|
|
for(j=0; j<checks_selected_ids.length; j++){
|
|
if( inputs[i].value == checks_selected_ids[j] ){
|
|
inputs[i].checked = true;
|
|
}
|
|
}
|
|
}catch(e){alert(e)}
|
|
}
|
|
}
|
|
}
|
|
setTimeout('catchSelectedItems()', 100);
|
|
|
|
function checkAll(){
|
|
var inputs = document.getElementsByTagName("input");
|
|
|
|
for(i=0; i<inputs.length; i++){
|
|
if( inputs[i].type == "checkbox" ){
|
|
inputs[i].checked = true;
|
|
inputs[i].onclick();
|
|
}
|
|
}
|
|
}
|
|
|
|
function uncheckAll(){
|
|
var inputs = document.getElementsByTagName("input");
|
|
checks_selected_ids.length = 0;
|
|
for(i=0; i<inputs.length; i++){
|
|
if( inputs[i].type == "checkbox" ){
|
|
inputs[i].checked = false;
|
|
inputs[i].onclick();
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|
|
<!-- END IGNORE --> |