Advanced Search
Search Results
1285 total results found
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...
Popup
Two actions are available for managing popup. You can insert a php script before the query is made to load the data. In addition, it is possible to insert another php script before the data is shown, so you can edit this data or the result when the popup is cl...
Presave
You can enter your own script when you press the "Save" button in EditView mode. To register a script use the method: SDK::setPreSave($module, $src); $module : the name of the module$src : the path of php file To remove the customization: SDK::unsetPreSave...
Advanced query
You can modify the query executed to load the data in ListView, RelatedList and Popup mode in order to limit or extend the visibility of the data. This does not affect Administrator users, who have access to all data. In addition, the module must be set as Pri...
Page Header
You can customize the user icon, the settings icon or the blue bars at the top of the pages of VTE to incorporate new features. To do this, simply extend the method setCustomVars of class VTEPageHeader as follows: SDK::setClass('VTEPageHeader', 'NewPageHeader...
Translations
Translations can be customized for each language and module installed. To modify or insert a new translation use the method: SDK::setLanguageEntry($module, $langid, $label, $newlabel); $module : the module name that contains the string$langid : the code of t...
Fields Visibility
You can change the visibility of the various fields (value of $readonly) and other variables in the different modes (ListView, EditView, and so on) via SDK. To register a new "view" use the method: SDK::addView($module, $src, $mode, $success); $module : the ...
Home Blocks
New blocks can be added to the home of VTE via SDK. The blocks cannot be deleted from the interface. The method for creating a new block is: SDK::setHomeIframe($size, $url, $title, $userid = null, $useframe = true); $size : the horizontal size of the block (...