initial commit from rev. 632
496
workflow/public_html/skins/JSForms.js
Normal file
@@ -0,0 +1,496 @@
|
||||
/*if (window.attachEvent)
|
||||
window.attachEvent('onload', _OnLoad_);
|
||||
else
|
||||
window.addEventListener('load', _OnLoad_, true);*/
|
||||
|
||||
//function _OnLoad_() {
|
||||
|
||||
|
||||
onload=function(){
|
||||
|
||||
if (self.setNewDates)
|
||||
self.setNewDates();
|
||||
|
||||
if (self.setReloadFields)
|
||||
self.setReloadFields();
|
||||
|
||||
if (self.enableHtmlEdit)
|
||||
self.enableHtmlEdit();
|
||||
|
||||
if (self.dynaformOnloadUsers)
|
||||
self.dynaformOnloadUsers();
|
||||
|
||||
if (self.dynaformOnload)
|
||||
self.dynaformOnload();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function refillText( fldName, ajax_server, values ) {
|
||||
var objetus;
|
||||
objetus = get_xmlhttp();
|
||||
objetus.open ("GET", ajax_server + "?" + values, false);
|
||||
objetus.onreadystatechange=function() {
|
||||
if ( objetus.readyState == 1 )
|
||||
{
|
||||
var textfield = document.getElementById( 'form[' + fldName + ']' );
|
||||
if ( ! isdefined( textfield ))
|
||||
var textfield = document.getElementById( fldName );
|
||||
textfield.value = '';
|
||||
|
||||
}
|
||||
else if ( objetus.readyState==4)
|
||||
{
|
||||
if( objetus.status==200)
|
||||
{
|
||||
// alert ( objetus.responseText );
|
||||
var xmlDoc = objetus.responseXML;
|
||||
if ( xmlDoc ) {
|
||||
var textfield = document.getElementById( 'form[' + fldName + ']' );
|
||||
if ( ! isdefined( textfield ))
|
||||
var textfield = document.getElementById( fldName );
|
||||
var dataArray = xmlDoc.getElementsByTagName('value');
|
||||
if (dataArray[0].firstChild)
|
||||
if((dataArray[0].firstChild.xml)!='_vacio'){
|
||||
textfield.value = dataArray[0].firstChild.xml;
|
||||
if(textfield.type != 'hidden')
|
||||
if ( textfield.onchange )
|
||||
textfield.onchange();
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
window.alert('error-['+ objetus.status +']-' + objetus.responseText );
|
||||
}
|
||||
}
|
||||
}
|
||||
objetus.send(null);
|
||||
}
|
||||
|
||||
function refillCaption( fldName, ajax_server, values ){
|
||||
var objetus;
|
||||
objetus = get_xmlhttp();
|
||||
objetus.open ("GET", ajax_server + "?" + values, false);
|
||||
objetus.onreadystatechange=function() {
|
||||
if ( objetus.readyState == 1 )
|
||||
{
|
||||
var textfield = document.getElementById( 'FLD_' + fldName );
|
||||
textfield.innerHTML = '';
|
||||
|
||||
}
|
||||
else if ( objetus.readyState==4)
|
||||
{
|
||||
if( objetus.status==200)
|
||||
{
|
||||
var xmlDoc = objetus.responseXML;
|
||||
if ( xmlDoc ) {
|
||||
var textfield = document.getElementById( 'FLD_' + fldName );
|
||||
var dataArray = xmlDoc.getElementsByTagName('value');
|
||||
if (dataArray[0].firstChild)
|
||||
if((dataArray[0].firstChild.xml)!='_vacio')
|
||||
//textfield.innerHTML = '<font size="1">' + dataArray[0].firstChild.xml + '</font>';
|
||||
textfield.innerHTML = dataArray[0].firstChild.xml;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
window.alert('error-['+ objetus.status +']-' + objetus.responseText );
|
||||
}
|
||||
}
|
||||
}
|
||||
objetus.send(null);
|
||||
}
|
||||
|
||||
|
||||
function refillDropdown( fldName, ajax_server, values , InitValue)
|
||||
{
|
||||
|
||||
var objetus;
|
||||
objetus = get_xmlhttp();
|
||||
objetus.open ("GET", ajax_server + "?" + values, false);
|
||||
objetus.onreadystatechange=function() {
|
||||
if ( objetus.readyState == 1 )
|
||||
{
|
||||
var dropdown = document.getElementById( 'form[' + fldName + ']' );
|
||||
|
||||
while ( dropdown.hasChildNodes() )
|
||||
dropdown.removeChild(dropdown.childNodes[0]);
|
||||
|
||||
}
|
||||
else if ( objetus.readyState==4)
|
||||
{
|
||||
if( objetus.status==200)
|
||||
{
|
||||
var xmlDoc = objetus.responseXML;
|
||||
|
||||
if ( xmlDoc ) {
|
||||
var dropdown = document.getElementById( 'form[' + fldName + ']' );
|
||||
var dataArray = xmlDoc.getElementsByTagName('item');
|
||||
itemsNumber = dataArray.length;
|
||||
|
||||
if(InitValue == true) itemsNumber = dataArray.length-1;
|
||||
for (var i=0; i<itemsNumber; i++){
|
||||
dropdown.options[ dropdown.length] = new Option(dataArray[i].firstChild.xml, dataArray[i].attributes[0].value );
|
||||
if(InitValue == true) {
|
||||
if(dropdown.options[ dropdown.length-1].value == dataArray[dataArray.length-1].firstChild.xml)
|
||||
dropdown.options[i].selected = true;
|
||||
}
|
||||
}
|
||||
dropdown.onchange();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
window.alert('error-['+ objetus.status +']-' + objetus.responseText );
|
||||
}
|
||||
}
|
||||
}
|
||||
objetus.send(null);
|
||||
}
|
||||
|
||||
function iframe_get_xmlhttp() {
|
||||
try {
|
||||
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
|
||||
} catch (e) {
|
||||
try {
|
||||
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
|
||||
} catch (E) {
|
||||
xmlhttp = false;
|
||||
}
|
||||
}
|
||||
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
|
||||
xmlhttp = new XMLHttpRequest();
|
||||
}
|
||||
return xmlhttp;
|
||||
}
|
||||
|
||||
function get_xmlhttp() {
|
||||
try {
|
||||
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
|
||||
} catch (e) {
|
||||
try {
|
||||
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
|
||||
} catch (E) {
|
||||
xmlhttp = false;
|
||||
}
|
||||
}
|
||||
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
|
||||
xmlhttp = new XMLHttpRequest();
|
||||
}
|
||||
return xmlhttp;
|
||||
}
|
||||
|
||||
|
||||
|
||||
function refillTextError( div_container, fldName, ajax_server, values )
|
||||
{
|
||||
var objetus;
|
||||
objetus = get_xmlhttp();
|
||||
objetus.open ("GET", ajax_server + "?" + values, false);
|
||||
objetus.onreadystatechange=function() {
|
||||
if ( objetus.readyState == 1 )
|
||||
{
|
||||
var textfield = document.getElementById( 'form[' + fldName + ']' );
|
||||
textfield.value = '';
|
||||
document.getElementById(div_container).innerHTML = '';
|
||||
|
||||
}
|
||||
else if ( objetus.readyState==4)
|
||||
{
|
||||
if( objetus.status==200)
|
||||
{
|
||||
var xmlDoc = objetus.responseXML;
|
||||
if ( xmlDoc ) {
|
||||
var textfield = document.getElementById( 'form[' + fldName + ']' );
|
||||
var dataArray = xmlDoc.getElementsByTagName('value');
|
||||
textfield.value = dataArray[0].firstChild.xml;
|
||||
var dataArray = xmlDoc.getElementsByTagName('message');
|
||||
if ( dataArray[0].firstChild )
|
||||
document.getElementById(div_container).innerHTML = '<b>' + dataArray[0].firstChild.xml + '</b>';
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
window.alert('error-['+ objetus.status +']-' + objetus.responseText );
|
||||
}
|
||||
}
|
||||
}
|
||||
objetus.send(null);
|
||||
}
|
||||
|
||||
|
||||
|
||||
function iframe_get_xmlhttp() {
|
||||
try {
|
||||
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
|
||||
} catch (e) {
|
||||
try {
|
||||
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
|
||||
} catch (E) {
|
||||
xmlhttp = false;
|
||||
}
|
||||
}
|
||||
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
|
||||
xmlhttp = new XMLHttpRequest();
|
||||
}
|
||||
return xmlhttp;
|
||||
}
|
||||
|
||||
function iframe_ajax_init(ajax_server, div_container, values, callback) {
|
||||
var objetus;
|
||||
objetus = iframe_get_xmlhttp();
|
||||
objetus.open ('GET', ajax_server + '?' + values, true);
|
||||
objetus.onreadystatechange = function() {
|
||||
if ( objetus.readyState == 1 ) {
|
||||
document.getElementById(div_container).style.display = '';
|
||||
document.getElementById(div_container).innerHTML = '...';
|
||||
}
|
||||
else if (objetus.readyState==4) {
|
||||
if (objetus.status==200) {
|
||||
document.getElementById(div_container).innerHTML = objetus.responseText;
|
||||
if (callback != '')
|
||||
callback();
|
||||
}
|
||||
else {
|
||||
window.alert('error-['+ objetus.status +']-' + objetus.responseText );
|
||||
}
|
||||
}
|
||||
}
|
||||
objetus.send(null);
|
||||
}
|
||||
|
||||
function iframe_ajax_init_2(ajax_server, div_container, values, callback) {
|
||||
var objetus;
|
||||
objetus = iframe_get_xmlhttp();
|
||||
objetus.open ('GET', ajax_server + '?' + values, true);
|
||||
objetus.onreadystatechange = function() {
|
||||
if ( objetus.readyState == 1 ) {
|
||||
div_container.style.display = '';
|
||||
div_container.innerHTML = '...';
|
||||
}
|
||||
else if (objetus.readyState==4) {
|
||||
if (objetus.status==200) {
|
||||
div_container.innerHTML = objetus.responseText;
|
||||
if (callback != '')
|
||||
callback();
|
||||
}
|
||||
else {
|
||||
window.alert('error-['+ objetus.status +']-' + objetus.responseText );
|
||||
}
|
||||
}
|
||||
}
|
||||
objetus.send(null);
|
||||
}
|
||||
|
||||
function myEmptyCallback() {
|
||||
}
|
||||
|
||||
function disable (obj) {
|
||||
obj.disabled = true;
|
||||
return;
|
||||
}
|
||||
|
||||
function enable (obj) {
|
||||
obj.disabled = false;
|
||||
return;
|
||||
}
|
||||
|
||||
function disableById (id) {
|
||||
obj = getField(id);
|
||||
obj.disabled = true;
|
||||
return;
|
||||
}
|
||||
|
||||
function enableById (id) {
|
||||
obj = getField(id);
|
||||
obj.disabled = false;
|
||||
return;
|
||||
}
|
||||
|
||||
function visible (obj) {
|
||||
obj.style.visibility = 'visible';
|
||||
return;
|
||||
}
|
||||
|
||||
function hidden (obj) {
|
||||
obj.style.visibility = 'hidden';
|
||||
return;
|
||||
}
|
||||
|
||||
function visibleById (id) {
|
||||
obj = getField(id);
|
||||
obj.style.visibility = 'visible';
|
||||
return;
|
||||
}
|
||||
|
||||
function hiddenById (id) {
|
||||
obj = getField(id);
|
||||
obj.style.visibility = 'hidden';
|
||||
return;
|
||||
}
|
||||
|
||||
function hiddenRowById (id) {
|
||||
row = 'DIV_'+ id +'.style.visibility = \'hidden\';';
|
||||
hiden = 'DIV_'+ id +'.style.display = \'none\';';
|
||||
eval(row);
|
||||
eval(hiden);
|
||||
return;
|
||||
}
|
||||
function visibleRowById (id) {
|
||||
row = 'DIV_'+ id +'.style.visibility = \'visible\';';
|
||||
block = 'DIV_'+ id +'.style.display = \'block\';';
|
||||
eval(row);
|
||||
eval(block);
|
||||
return;
|
||||
}
|
||||
|
||||
function setFocus (obj) {
|
||||
obj.focus();
|
||||
return;
|
||||
}
|
||||
|
||||
function setFocusById (id) {
|
||||
obj = getField (id);
|
||||
setFocus(obj);
|
||||
return;
|
||||
}
|
||||
|
||||
function submitForm () {
|
||||
document.webform.submit();
|
||||
return;
|
||||
}
|
||||
|
||||
function changeValue(id, newValue) {
|
||||
obj = getField(id);
|
||||
obj.value = newValue;
|
||||
return ;
|
||||
}
|
||||
|
||||
function getValue(obj) {
|
||||
return obj.value;
|
||||
}
|
||||
|
||||
function getValueById (id) {
|
||||
obj = getField(id);
|
||||
return obj.value;
|
||||
}
|
||||
|
||||
function removeCurrencySign (snumber) {
|
||||
var aux = '';
|
||||
var num = new String (snumber);
|
||||
var len = num.length;
|
||||
var i = 0;
|
||||
for (i=0; !(i>=len); i++)
|
||||
if (num.charAt(i) != ',' && num.charAt(i) != '$' && num.charAt(i) != ' ') aux = aux + num.charAt(i);
|
||||
return aux;
|
||||
}
|
||||
|
||||
function removePercentageSign (snumber) {
|
||||
var aux = '';
|
||||
var num = new String (snumber);
|
||||
var len = num.length;
|
||||
var i = 0;
|
||||
for (i=0; !(i>=len); i++)
|
||||
if (num.charAt(i) != ',' && num.charAt(i) != '%' && num.charAt(i) != ' ') aux = aux + num.charAt(i);
|
||||
return aux;
|
||||
}
|
||||
|
||||
function toReadOnly(obj) {
|
||||
if (obj) {
|
||||
obj.readOnly = 'readOnly';
|
||||
obj.style.background = '#CCCCCC';
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
function toReadOnlyById(id) {
|
||||
obj = getField(id);
|
||||
if (obj) {
|
||||
obj.readOnly = 'readOnly';
|
||||
obj.style.background = '#CCCCCC';
|
||||
}
|
||||
return ;
|
||||
}
|
||||
|
||||
function getField (id) {
|
||||
obj = document.getElementById('form[' + id + ']');
|
||||
if (!obj)
|
||||
obj = document.getElementById(id);
|
||||
return obj;
|
||||
}
|
||||
|
||||
function getGridField(Grid, Row, Field) {
|
||||
obj = document.getElementById('form[' + Grid + ']' + '[' + Row + ']' + '[' + Field + ']');
|
||||
return obj;
|
||||
}
|
||||
|
||||
function getGridValueById(Grid, Row, Field) {
|
||||
obj = getGridField(Grid, Row, Field);
|
||||
if (obj)
|
||||
return obj.value;
|
||||
else
|
||||
return '';
|
||||
}
|
||||
|
||||
function Number_Rows_Grid(Grid, Field) {
|
||||
Number_Rows = 1;
|
||||
if (getGridField(Grid, Number_Rows, Field)) {
|
||||
Number_Rows = 0;
|
||||
while (getGridField(Grid, (Number_Rows + 1), Field))
|
||||
Number_Rows++;
|
||||
return Number_Rows;
|
||||
}
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
|
||||
function attachFunctionEventOnChange(Obj, TheFunction) {
|
||||
Obj.oncustomize = TheFunction;
|
||||
}
|
||||
|
||||
function attachFunctionEventOnChangeById(Id, TheFunction) {
|
||||
Obj = getField(Id);
|
||||
Obj.oncustomize = TheFunction;
|
||||
}
|
||||
|
||||
function attachFunctionEventOnKeypress(Obj, TheFunction) {
|
||||
Obj.attachEvent('onkeypress', TheFunction);
|
||||
}
|
||||
|
||||
function attachFunctionEventOnKeypressById(Id, TheFunction) {
|
||||
Obj = getField(Id);
|
||||
Obj.attachEvent('onkeypress', TheFunction);
|
||||
}
|
||||
|
||||
function unselectOptions ( field ) {
|
||||
var radios = document.getElementById('form[' + field + ']');
|
||||
if (radios) {
|
||||
var inputs = radios.getElementsByTagName ('input');
|
||||
if (inputs) {
|
||||
for(var i = 0; i < inputs.length; ++i) {
|
||||
inputs[i].checked = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function validDate(TheField, Required) {
|
||||
TheYear = getField(TheField + '][YEAR');
|
||||
TheMonth = getField(TheField + '][MONTH');
|
||||
TheDay = getField(TheField + '][DAY');
|
||||
if (!TheYear || !TheMonth || !TheDay)
|
||||
return false;
|
||||
if (Required)
|
||||
if ((TheYear.value == 0) || (TheMonth.value == 0) || (TheDay.value == 0))
|
||||
return false;
|
||||
if (TheMonth.value == 2)
|
||||
if (TheDay.value > 29)
|
||||
return false;
|
||||
if ((TheMonth.value == 4) || (TheMonth.value == 6) || (TheMonth.value == 9) || (TheMonth.value == 11))
|
||||
if (TheDay.value > 30)
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
128
workflow/public_html/skins/ajax.js
Normal file
@@ -0,0 +1,128 @@
|
||||
// Popup code
|
||||
var gPopupMask = null;
|
||||
var gPopupContainer = null;
|
||||
var gPopFrame = null;
|
||||
var gReturnFunc;
|
||||
var gPopupIsShown = false;
|
||||
|
||||
var gHideSelects = false;
|
||||
|
||||
|
||||
var gTabIndexes = new Array();
|
||||
// Pre-defined list of tags we want to disable/enable tabbing into
|
||||
var gTabbableTags = new Array("A","BUTTON","TEXTAREA","INPUT","IFRAME");
|
||||
|
||||
// If using Mozilla or Firefox, use Tab-key trap.
|
||||
if (!document.all) {
|
||||
document.onkeypress = keyDownHandler;
|
||||
}
|
||||
|
||||
function myEmptyCallback() {
|
||||
}
|
||||
|
||||
function get_xmlhttp() {
|
||||
try {
|
||||
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
|
||||
} catch (e) {
|
||||
try {
|
||||
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
|
||||
} catch (E) {
|
||||
xmlhttp = false;
|
||||
}
|
||||
}
|
||||
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
|
||||
xmlhttp = new XMLHttpRequest();
|
||||
}
|
||||
return xmlhttp;
|
||||
}
|
||||
|
||||
function isdefined( variable) {
|
||||
return (typeof(window[variable]) == "undefined")? false: true;
|
||||
}
|
||||
|
||||
//DAN Nov 24, 2006
|
||||
//parameter asyncronuos was added to work in syncronous mode
|
||||
// usage: ajax_init(_,_,_,_,false);
|
||||
function ajax_init( ajax_server,div_container, values, callback,asyncronuos)
|
||||
{ // DAN Nov 24, 2006. variable asyncronuos was added
|
||||
asyncronuos = (asyncronuos!=false)?true:false;
|
||||
|
||||
var objetus;
|
||||
objetus = get_xmlhttp();
|
||||
|
||||
try{ // DAN Nov 24, 2006. variable asyncronuos instead of true
|
||||
objetus.open("GET", ajax_server + "?" + values, asyncronuos);
|
||||
|
||||
}catch(ss)
|
||||
{
|
||||
alert("error"+ss.message);
|
||||
}
|
||||
objetus.onreadystatechange=function() {
|
||||
if ( objetus.readyState == 1 )
|
||||
{
|
||||
document.getElementById(div_container).style.display = "";
|
||||
document.getElementById(div_container).innerHTML = "...";
|
||||
|
||||
}
|
||||
else if ( objetus.readyState==4)
|
||||
{
|
||||
if( objetus.status==200)
|
||||
{
|
||||
document.getElementById(div_container).innerHTML = objetus.responseText;
|
||||
if ( callback != '' )
|
||||
callback();
|
||||
}
|
||||
else
|
||||
{
|
||||
window.alert('error-['+ objetus.status +']-' + objetus.responseText );
|
||||
}
|
||||
}
|
||||
}
|
||||
objetus.send(null);
|
||||
}
|
||||
|
||||
function ajax_init_2( ajax_server, div, values, callback )
|
||||
{
|
||||
var objetus;
|
||||
objetus = get_xmlhttp();
|
||||
objetus.open ("GET", ajax_server + "?" + values, true);
|
||||
objetus.onreadystatechange=function() {
|
||||
if ( objetus.readyState == 1 )
|
||||
{
|
||||
//document.getElementById(div_container).style.display = "";
|
||||
//document.getElementById(div_container).innerHTML = "...";
|
||||
div.style.display = "";
|
||||
div.innerHTML = "...";
|
||||
}
|
||||
else if ( objetus.readyState==4)
|
||||
{
|
||||
if( objetus.status==200)
|
||||
{
|
||||
//document.getElementById(div_container).innerHTML = objetus.responseText;
|
||||
div.innerHTML = objetus.responseText;
|
||||
if ( callback != '' )
|
||||
callback();
|
||||
}
|
||||
else
|
||||
{
|
||||
window.alert('error-['+ objetus.status +']-' + objetus.responseText );
|
||||
}
|
||||
}
|
||||
}
|
||||
objetus.send(null);
|
||||
}
|
||||
function iframe_get_xmlhttp() {
|
||||
try {
|
||||
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
|
||||
} catch (e) {
|
||||
try {
|
||||
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
|
||||
} catch (E) {
|
||||
xmlhttp = false;
|
||||
}
|
||||
}
|
||||
if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
|
||||
xmlhttp = new XMLHttpRequest();
|
||||
}
|
||||
return xmlhttp;
|
||||
}
|
||||
5150
workflow/public_html/skins/ext/ext-all-notheme.css
Executable file
6789
workflow/public_html/skins/ext/ext-all.css
Executable file
BIN
workflow/public_html/skins/ext/images/default/box/corners-blue.gif
Executable file
|
After Width: | Height: | Size: 1010 B |
BIN
workflow/public_html/skins/ext/images/default/box/corners.gif
Executable file
|
After Width: | Height: | Size: 1005 B |
BIN
workflow/public_html/skins/ext/images/default/box/l-blue.gif
Executable file
|
After Width: | Height: | Size: 810 B |
BIN
workflow/public_html/skins/ext/images/default/box/l.gif
Executable file
|
After Width: | Height: | Size: 810 B |
BIN
workflow/public_html/skins/ext/images/default/box/r-blue.gif
Executable file
|
After Width: | Height: | Size: 810 B |
BIN
workflow/public_html/skins/ext/images/default/box/r.gif
Executable file
|
After Width: | Height: | Size: 810 B |
BIN
workflow/public_html/skins/ext/images/default/box/tb-blue.gif
Executable file
|
After Width: | Height: | Size: 851 B |
BIN
workflow/public_html/skins/ext/images/default/box/tb.gif
Executable file
|
After Width: | Height: | Size: 839 B |
BIN
workflow/public_html/skins/ext/images/default/button/arrow.gif
Executable file
|
After Width: | Height: | Size: 828 B |
BIN
workflow/public_html/skins/ext/images/default/button/btn.gif
Executable file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
workflow/public_html/skins/ext/images/default/button/btn2.gif
Executable file
|
After Width: | Height: | Size: 8.6 KiB |
BIN
workflow/public_html/skins/ext/images/default/button/group-cs.gif
Executable file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
workflow/public_html/skins/ext/images/default/button/group-lr.gif
Executable file
|
After Width: | Height: | Size: 861 B |
BIN
workflow/public_html/skins/ext/images/default/button/group-tb.gif
Executable file
|
After Width: | Height: | Size: 846 B |
BIN
workflow/public_html/skins/ext/images/default/button/s-arrow-b-noline.gif
Executable file
|
After Width: | Height: | Size: 898 B |
BIN
workflow/public_html/skins/ext/images/default/button/s-arrow-b.gif
Executable file
|
After Width: | Height: | Size: 937 B |
BIN
workflow/public_html/skins/ext/images/default/button/s-arrow-bo.gif
Executable file
|
After Width: | Height: | Size: 139 B |
BIN
workflow/public_html/skins/ext/images/default/button/s-arrow-noline.gif
Executable file
|
After Width: | Height: | Size: 863 B |
BIN
workflow/public_html/skins/ext/images/default/button/s-arrow-o.gif
Executable file
|
After Width: | Height: | Size: 937 B |
BIN
workflow/public_html/skins/ext/images/default/button/s-arrow.gif
Executable file
|
After Width: | Height: | Size: 937 B |
BIN
workflow/public_html/skins/ext/images/default/dd/drop-add.gif
Executable file
|
After Width: | Height: | Size: 1001 B |
BIN
workflow/public_html/skins/ext/images/default/dd/drop-no.gif
Executable file
|
After Width: | Height: | Size: 949 B |
BIN
workflow/public_html/skins/ext/images/default/dd/drop-yes.gif
Executable file
|
After Width: | Height: | Size: 1016 B |
BIN
workflow/public_html/skins/ext/images/default/editor/tb-sprite.gif
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
workflow/public_html/skins/ext/images/default/form/checkbox.gif
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
workflow/public_html/skins/ext/images/default/form/clear-trigger.gif
Executable file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
workflow/public_html/skins/ext/images/default/form/clear-trigger.psd
Executable file
BIN
workflow/public_html/skins/ext/images/default/form/date-trigger.gif
Executable file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
workflow/public_html/skins/ext/images/default/form/date-trigger.psd
Executable file
BIN
workflow/public_html/skins/ext/images/default/form/error-tip-corners.gif
Executable file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
workflow/public_html/skins/ext/images/default/form/exclamation.gif
Executable file
|
After Width: | Height: | Size: 996 B |
BIN
workflow/public_html/skins/ext/images/default/form/radio.gif
Executable file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
workflow/public_html/skins/ext/images/default/form/search-trigger.gif
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
workflow/public_html/skins/ext/images/default/form/search-trigger.psd
Executable file
BIN
workflow/public_html/skins/ext/images/default/form/text-bg.gif
Executable file
|
After Width: | Height: | Size: 819 B |
BIN
workflow/public_html/skins/ext/images/default/form/trigger-square.gif
Executable file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
workflow/public_html/skins/ext/images/default/form/trigger-square.psd
Executable file
BIN
workflow/public_html/skins/ext/images/default/form/trigger-tpl.gif
Executable file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
workflow/public_html/skins/ext/images/default/form/trigger.gif
Executable file
|
After Width: | Height: | Size: 1.8 KiB |
BIN
workflow/public_html/skins/ext/images/default/form/trigger.psd
Executable file
BIN
workflow/public_html/skins/ext/images/default/gradient-bg.gif
Executable file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
workflow/public_html/skins/ext/images/default/grid/arrow-left-white.gif
Executable file
|
After Width: | Height: | Size: 825 B |
BIN
workflow/public_html/skins/ext/images/default/grid/arrow-right-white.gif
Executable file
|
After Width: | Height: | Size: 825 B |
BIN
workflow/public_html/skins/ext/images/default/grid/col-move-bottom.gif
Executable file
|
After Width: | Height: | Size: 868 B |
BIN
workflow/public_html/skins/ext/images/default/grid/col-move-top.gif
Executable file
|
After Width: | Height: | Size: 869 B |
BIN
workflow/public_html/skins/ext/images/default/grid/columns.gif
Executable file
|
After Width: | Height: | Size: 962 B |
BIN
workflow/public_html/skins/ext/images/default/grid/dirty.gif
Executable file
|
After Width: | Height: | Size: 832 B |
BIN
workflow/public_html/skins/ext/images/default/grid/done.gif
Executable file
|
After Width: | Height: | Size: 133 B |
BIN
workflow/public_html/skins/ext/images/default/grid/drop-no.gif
Executable file
|
After Width: | Height: | Size: 947 B |
BIN
workflow/public_html/skins/ext/images/default/grid/drop-yes.gif
Executable file
|
After Width: | Height: | Size: 860 B |
BIN
workflow/public_html/skins/ext/images/default/grid/footer-bg.gif
Executable file
|
After Width: | Height: | Size: 834 B |
BIN
workflow/public_html/skins/ext/images/default/grid/grid-blue-hd.gif
Executable file
|
After Width: | Height: | Size: 829 B |
BIN
workflow/public_html/skins/ext/images/default/grid/grid-blue-split.gif
Executable file
|
After Width: | Height: | Size: 817 B |
BIN
workflow/public_html/skins/ext/images/default/grid/grid-hrow.gif
Executable file
|
After Width: | Height: | Size: 855 B |
BIN
workflow/public_html/skins/ext/images/default/grid/grid-loading.gif
Executable file
|
After Width: | Height: | Size: 701 B |
BIN
workflow/public_html/skins/ext/images/default/grid/grid-split.gif
Executable file
|
After Width: | Height: | Size: 817 B |
BIN
workflow/public_html/skins/ext/images/default/grid/grid-vista-hd.gif
Executable file
|
After Width: | Height: | Size: 829 B |
BIN
workflow/public_html/skins/ext/images/default/grid/grid3-hd-btn.gif
Executable file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
workflow/public_html/skins/ext/images/default/grid/grid3-hrow-over.gif
Executable file
|
After Width: | Height: | Size: 823 B |
BIN
workflow/public_html/skins/ext/images/default/grid/grid3-hrow.gif
Executable file
|
After Width: | Height: | Size: 836 B |
BIN
workflow/public_html/skins/ext/images/default/grid/grid3-special-col-bg.gif
Executable file
|
After Width: | Height: | Size: 837 B |
BIN
workflow/public_html/skins/ext/images/default/grid/grid3-special-col-sel-bg.gif
Executable file
|
After Width: | Height: | Size: 843 B |
BIN
workflow/public_html/skins/ext/images/default/grid/group-by.gif
Executable file
|
After Width: | Height: | Size: 917 B |
BIN
workflow/public_html/skins/ext/images/default/grid/group-collapse.gif
Executable file
|
After Width: | Height: | Size: 881 B |
BIN
workflow/public_html/skins/ext/images/default/grid/group-expand-sprite.gif
Executable file
|
After Width: | Height: | Size: 955 B |
BIN
workflow/public_html/skins/ext/images/default/grid/group-expand.gif
Executable file
|
After Width: | Height: | Size: 884 B |
BIN
workflow/public_html/skins/ext/images/default/grid/hd-pop.gif
Executable file
|
After Width: | Height: | Size: 839 B |
BIN
workflow/public_html/skins/ext/images/default/grid/hmenu-asc.gif
Executable file
|
After Width: | Height: | Size: 931 B |
BIN
workflow/public_html/skins/ext/images/default/grid/hmenu-desc.gif
Executable file
|
After Width: | Height: | Size: 930 B |
BIN
workflow/public_html/skins/ext/images/default/grid/hmenu-lock.gif
Executable file
|
After Width: | Height: | Size: 955 B |
BIN
workflow/public_html/skins/ext/images/default/grid/hmenu-lock.png
Executable file
|
After Width: | Height: | Size: 648 B |
BIN
workflow/public_html/skins/ext/images/default/grid/hmenu-unlock.gif
Executable file
|
After Width: | Height: | Size: 971 B |
BIN
workflow/public_html/skins/ext/images/default/grid/hmenu-unlock.png
Executable file
|
After Width: | Height: | Size: 697 B |
BIN
workflow/public_html/skins/ext/images/default/grid/invalid_line.gif
Executable file
|
After Width: | Height: | Size: 815 B |
BIN
workflow/public_html/skins/ext/images/default/grid/loading.gif
Executable file
|
After Width: | Height: | Size: 771 B |
BIN
workflow/public_html/skins/ext/images/default/grid/mso-hd.gif
Executable file
|
After Width: | Height: | Size: 875 B |
BIN
workflow/public_html/skins/ext/images/default/grid/nowait.gif
Executable file
|
After Width: | Height: | Size: 884 B |
BIN
workflow/public_html/skins/ext/images/default/grid/page-first-disabled.gif
Executable file
|
After Width: | Height: | Size: 925 B |
BIN
workflow/public_html/skins/ext/images/default/grid/page-first.gif
Executable file
|
After Width: | Height: | Size: 925 B |
BIN
workflow/public_html/skins/ext/images/default/grid/page-last-disabled.gif
Executable file
|
After Width: | Height: | Size: 923 B |
BIN
workflow/public_html/skins/ext/images/default/grid/page-last.gif
Executable file
|
After Width: | Height: | Size: 923 B |
BIN
workflow/public_html/skins/ext/images/default/grid/page-next-disabled.gif
Executable file
|
After Width: | Height: | Size: 875 B |
BIN
workflow/public_html/skins/ext/images/default/grid/page-next.gif
Executable file
|
After Width: | Height: | Size: 875 B |
BIN
workflow/public_html/skins/ext/images/default/grid/page-prev-disabled.gif
Executable file
|
After Width: | Height: | Size: 879 B |
BIN
workflow/public_html/skins/ext/images/default/grid/page-prev.gif
Executable file
|
After Width: | Height: | Size: 879 B |
BIN
workflow/public_html/skins/ext/images/default/grid/pick-button.gif
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
workflow/public_html/skins/ext/images/default/grid/refresh.gif
Executable file
|
After Width: | Height: | Size: 977 B |
BIN
workflow/public_html/skins/ext/images/default/grid/row-check-sprite.gif
Executable file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
workflow/public_html/skins/ext/images/default/grid/row-expand-sprite.gif
Executable file
|
After Width: | Height: | Size: 955 B |
BIN
workflow/public_html/skins/ext/images/default/grid/row-over.gif
Executable file
|
After Width: | Height: | Size: 823 B |
BIN
workflow/public_html/skins/ext/images/default/grid/row-sel.gif
Executable file
|
After Width: | Height: | Size: 823 B |
BIN
workflow/public_html/skins/ext/images/default/grid/sort-hd.gif
Executable file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
workflow/public_html/skins/ext/images/default/grid/sort_asc.gif
Executable file
|
After Width: | Height: | Size: 830 B |
BIN
workflow/public_html/skins/ext/images/default/grid/sort_desc.gif
Executable file
|
After Width: | Height: | Size: 833 B |
BIN
workflow/public_html/skins/ext/images/default/grid/wait.gif
Executable file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
workflow/public_html/skins/ext/images/default/layout/collapse.gif
Executable file
|
After Width: | Height: | Size: 842 B |