Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

1989 total results found

Modifica della visibilità dei campi

Sviluppatori SDK 2

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

Sviluppatori SDK 2

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

Sviluppatori SDK 2

È 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

Sviluppatori SDK 2

È 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

Sviluppatori SDK 2

È 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

Sviluppatori SDK 2

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

Sviluppatori SDK 2

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

Sviluppatori SDK Processi

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

Connettore Wildix

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

Connettore Wildix

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

Connettore Wildix

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

Connettore Wildix

Include custom php/js/css files

Developers SDK 2

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

Developers SDK 2

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

Developers SDK 2

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

Developers SDK 2

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

Developers SDK 2

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

Developers SDK 2

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...