Advanced Search
Search Results
1989 total results found
Modifica della visibilità dei campi
Si può modificare la visibilità dei vari campi (valore di $readonly) e altre variabili nelle varie modalità (ListView, EditView…). Per registrare una nuova “Vista” usare il metodo: SDK::addView($module, $src, $mode, $success);$module : il modulo in cui applic...
Gestione blocchi Home
Si possono aggiungere nuovi blocchi alla home del VTE tramite SDK; i nuovi blocchi creati non saranno eliminabili tramite interfaccia. Il metodo per la creazione di un nuovo blocco è: SDK::setHomeIframe($size, $url, $title, $userid = null, $useframe = true);$...
Bottoni personalizzati
È possibile aggiungere pulsanti in vari punti di vte. Per inserire un nuovo pulsante utilizzare il seguente metodo: SDK::setMenuButton(...) Parametro Descrizione $type = '' il tipo del pulsante, può essere'fixed' — apparirà nei pulsa...
Gestore stati
È possibile modificare le opzioni di scelta per le picklist gestite dal gestore stati, nonché aggiungere messaggi al blocco “Gestore stati”, a destra del record. Per registrare tale funzionalità usare il metodo: SDK::setTransition($module, $fieldname, $file, ...
Funzioni Custom PDFMaker
È possibile aggiungere funzioni custom nel PDFMaker. Per inserirne una usare: SDK::setPDFCustomFunction($label, $name, $params);$label: etichetta per la funzione (viene tradotta all'interno del modulo PDFMaker)$name: nome della funzione$params: array con i no...
Reports personalizzati
Si possono inserire cartelle e report personalizzati usando i seguenti metodi SDK::setReportFolder($name, $description);$name : nome della cartella$decription : descrizione Crea una nuova cartella nella pagina dei report. La cartella creata sarà visibile da ...
Contatore Turbolift
Quando si modificano i criteri di estrazione standard di una relatedlist, per esempio usando un altro metodo o ridefinendolo estendendo la classe che lo contiene, il contatore del numero di record collegati visibile nel turbolift (colonna a destra con la lista...
Log di Processo
La modalità di visione dei log è cambiata nelle varie release di VTENEXT e viene riassunta come segue. VTENEXT 16.09: Log consultabile tramite accesso al filesystem nella cartella logs/ProcessEngine VTENEXT 18.X: In Impostazioni → Business Process Manager ...
Introduzione
L’attività d’impresa richiede rapporti continui e duraturi con i propri clienti, con i propri fornitori e la ricerca costante di nuove opportunità e occasioni di sviluppo delle proprie relazioni commerciali. Lo strumento maggiormente utilizzato e più diretto ...
Caratteristiche del modulo
Gestione Presence e Dispositivi Il modulo consente di gestire lo stato di presenza (presence) dell’utilizzatore e il dispositivo che si sceglie di utilizzare comodamente dal menu utente dell’interfaccia di vtenext.Si possono cambiare gli stati (online, non di...
Installazione
L’installazione prevede le seguenti attività:• installazione modulo lato vtenext• attivazione licenze sulla centrale Wildix (se non presenti)• configurazione modulo• configurazione utentiL’installazione può essere svolta dal master partner CRMVillage o da un p...
Architettura
Include custom php/js/css files
In order to include your custom code (that will be included in every page) you need to register the new file with this call: SDK::setUtil($src); $src : the php file path and the file name to be included To remove the customization: SDK::unsetUtil($src); $...
Javascript overrides and extensions
Some commonly used Javascript functions can be replaced or extended to change their behavior. To do this, simply create a function that has the same name as the function to be modified with the addition of "_override" or "_extension" and the same parameters. T...
Standard PHP replacement
You can replace the standard php files of the modules, such as DetailView.php, EditView.php and so on through the method: SDK::setFile($module, $file, $newfile); $module : the name of the module$file : the value of the "action" parameter to be compared$newfi...
Inclusion of other files
To associate files or folders to a module, so that they are imported automatically, the following methods are available: SDK::setExtraSrc($module, $src); $module : the name of the module$src : the path of the file or folder to be associated To delete the as...
Custom Uitypes
You can add new types to the existing ones and manage them completely without changing other code. The procedure for creating a new one is: Create a new custom field with the new type (nnn) Create the files:a. nnn.php in modules/SDK/examplesb. nnn.js in mo...
Smarty Custom Templates
You can create your own templates, which replace the standard ones (such as EditView.tpl and so on). The new template is used if $_REQUEST values of the page meet the requirements. The registration of a new template is done through the method: SDK::setSmartyT...