custom:api_js_opengwcalendartab

Differenze

Queste sono le differenze tra la revisione selezionata e la versione attuale della pagina.

Link a questa pagina di confronto

Prossima revisione
Revisione precedente
custom:api_js_opengwcalendartab [2020/01/08 10:51]
giorgio.scali creata
custom:api_js_opengwcalendartab [2024/11/04 16:38] (versione attuale)
giorgio.scali [Esempi]
Linea 11: Linea 11:
     * **calendarCodes** String, array: comma separated values     * **calendarCodes** String, array: comma separated values
     * **eventClassName** String, array: comma separated values. parallel array to **calendarCodes** (each n position refers to nth calendarCodes'​s one)     * **eventClassName** String, array: comma separated values. parallel array to **calendarCodes** (each n position refers to nth calendarCodes'​s one)
-    * **filters** Object or Object[], optional //​removable//​ filters. Inside filters columnName property are available some predefined placeholders:​ '#​id_event#',​ '#​cod_event#',​ '#​summary#',​ '#​place#',​ '#​start_date#',​ '#​end_date#',​ '#​notes#',​ '#​notes#',​ '#​cod_calendar#',​ '#​cod_event_status#',​ '#​cod_priority#',​ '#​cod_event_type#'​ +    * **filters** Object or Object[], optional //​removable//​ filters. Inside filters columnName property are available some predefined placeholders:​ '#​id_event#',​ '#​cod_event#',​ '#​summary#',​ '#​place#',​ '#​start_date#',​ '#​end_date#',​ '#​notes#',​ '#​notes#',​ '#​cod_calendar#',​ '#​cod_event_status#',​ '#​cod_priority#',​ '#​cod_event_type#'​This can be used to make filters shared with different gwClasses implementing the event interface (each one that may overrides some field through a specific mapping)Simple filter based on a specific (=gwClass related) columnName, for example evt_id_event instead of the default id_event still will works, but gwClass cross compatibility may not be granted. Ex: <code javascript>​{condition:​ '​AND',​ columnName: '#​cod_event_status#',​ operator: '​=',​ filterType: '​STRING',​ value: '​CLO'​}</​code>​ 
-This can be used to make filters shared with different gwClasses implementing the event interface (each one that may overrides some field through a specific mapping) +    * **staticFilters** Object or Object[], optional //fixed// filters. Inside filters columnName property are available some predefined placeholders:​ '#​id_event#',​ '#​cod_event#',​ '#​summary#',​ '#​place#',​ '#​start_date#',​ '#​end_date#',​ '#​notes#',​ '#​notes#',​ '#​cod_calendar#',​ '#​cod_event_status#',​ '#​cod_priority#',​ '#​cod_event_type#​This can be used to make filters shared with different gwClasses implementing the event interface (each one that may overrides some field through a specific mapping)Simple filter based on a specific (=gwClass related) columnName, for example evt_id_event instead of the default id_event still will works, but gwClass cross compatibility may not be granted. Ex: <code javascript>​{condition:​ '​AND',​ columnName: '#​cod_event_type#',​ operator: '​=',​ filterType: '​STRING',​ value: ​ '​ETP3'​}</​code>​
-Simple filter based on a specific (=gwClass related) columnName, for example evt_id_event instead of the default id_event still will works, but gwClass cross compatibility may not be granted. Ex: <code javascript>​{condition:​ '​AND',​ columnName: '#​cod_event_status#',​ operator: '​=',​ filterType: '​STRING',​ value: '​CLO'​}</​code>​ +
-    * **staticFilters** Object or Object[], optional //fixed// filters. Inside filters columnName property are available some predefined placeholders:​ '#​id_event#',​ '#​cod_event#',​ '#​summary#',​ '#​place#',​ '#​start_date#',​ '#​end_date#',​ '#​notes#',​ '#​notes#',​ '#​cod_calendar#',​ '#​cod_event_status#',​ '#​cod_priority#',​ '#​cod_event_type#​+
-This can be used to make filters shared with different gwClasses implementing the event interface (each one that may overrides some field through a specific mapping) +
-Simple filter based on a specific (=gwClass related) columnName, for example evt_id_event instead of the default id_event still will works, but gwClass cross compatibility may not be granted. Ex: <code javascript>​{condition:​ '​AND',​ columnName: '#​cod_event_type#',​ operator: '​=',​ filterType: '​STRING',​ value: ​ '​ETP3'​}</​code>​+
     * **minHours** Integer, optional, in range [0, 23], 8 default. Min hours shown is day view     * **minHours** Integer, optional, in range [0, 23], 8 default. Min hours shown is day view
     * **maxHours** Integer, optional, in range [1, 36], 16 default. Max hours shown is day view     * **maxHours** Integer, optional, in range [1, 36], 16 default. Max hours shown is day view
Linea 56: Linea 52:
 var gwCalendarTab = openGwCalendarTab(title,​ params); var gwCalendarTab = openGwCalendarTab(title,​ params);
 </​code>​ </​code>​
 +
 +
 +
 +Esempio apertura calendario con filtri presi da lista classe filtrata, aprendolo sulla prima data utile:
 +<code javascript example.js>​
 +
 +// Available incoming parameters: ​
 +// In the linkList grid parameter has been added: start class id and name, start class key column and key column type, 
 +// target class name, target class attribute id and target class key column. ​
 +// /*String*/ gwClassName,​ /*Object*/ queryParameter,​ /*Object*/ grid, /*Object*/ detailContainerId
 +//debugger;
 +
 +var filters = []
 +if(grid.query && grid.query.query){
 +    filters = grid.query.query.filters || [];
 +    if(grid.query.query.staticFilters) filters = [filters, ...grid.query.query.staticFilters];​ //TODO MERGE STATICFILTERS BETTER
 +}
 +var sort = null;
 +var callback = function(items){
 +    var openingDate = items.length!=null ? new Date(items[0].evt_start_date) : new Date();
 +    ​
 +    var itemIdList = [];
 +    items.forEach(function(item){
 +        itemIdList.push(item[grid.store.objectStore.idProperty]);​
 +        ​
 +        if(new Date(item.evt_start_date) < openingDate) openingDate = new Date(item.evt_start_date);​
 +    });
 +    var filters = [{condition:​ '​AND',​ columnName: '#​id_event#',​ operator: '​IN',​ filterType: '​INTEGER',​ value: ​ itemIdList}];​
 +    ​
 +    ​
 + var title = '​Calendario Eventi';​
 +    var tabWidgetSuffixId = gwClassName+'​_filtered';​ //Optional, Used to eventually reuse an already opened tab. if omitted a random one is generated, and a new tab is opened
 +    var params = {
 +        calendarCodes:​ '​PEM_ASS,​PEM_BUI,​PEM_IMP,​PEM_SPA',​ //array: comma separated values
 +        eventClassName:​ gwClassName+','​+gwClassName+','​+gwClassName+','​+gwClassName,​ //array: comma separated values. parallel array to calendarCodes
 +        filters: filters,
 +        staticFilters:​ [],
 +        minHours: 0, //Integer, optional, default 0. min hours shown is day view
 +        maxHours: 23, //Integer, optional, default 23. Max hours shown is day view
 +        date: openingDate,​ // Optional: ex: value="​new Date(2015, 26, 3)". If not set today is used. new Date() takes 3 parameters, in order: year, month, day
 +        dateInterval:​ '​month',​ //String, optional, default '​week'​. possible options: '​day',​ '​week',​ '​month'​
 +        dateIntervalSteps:​ null //Integer, optional, default 5. n days from the reference date
 +    };
 +    var gwCalendarTab = openGwCalendarTab(title,​ params);
 +};
 +selectGwClassRecords(gwClassName,​ filters, sort, callback); //4.5.* and 4.4.*
 +//​selectGwClassRecordsRaw(gwClassName,​ filters, sort, callback); //from 4.6.8
 +</​code>​
 +
  • custom/api_js_opengwcalendartab.1578477109.txt.gz
  • Ultima modifica: 2020/01/08 10:51
  • da giorgio.scali