Differenze
Queste sono le differenze tra la revisione selezionata e la versione attuale della pagina.
Entrambe le parti precedenti la revisione Revisione precedente Prossima revisione | Revisione precedente | ||
custom:api_js_opengwgantttab [2019/12/16 18:41] giorgio.scali |
custom:api_js_opengwgantttab [2020/01/08 10:13] (versione attuale) giorgio.scali |
||
---|---|---|---|
Linea 45: | Linea 45: | ||
Esempi con codice minimale: | Esempi con codice minimale: | ||
- | <code javascript> | + | <code javascript example.js> |
var title = 'title'; | var title = 'title'; | ||
var options = { | var options = { | ||
Linea 53: | Linea 53: | ||
</code> | </code> | ||
- | <code javascript> | + | <code javascript example.js> |
var title = 'title'; | var title = 'title'; | ||
var options = { | var options = { | ||
Linea 70: | Linea 70: | ||
Esempio generale con utilizzo di tutti i parametri. Utile per copiare velocemente uno scheletro con la struttura di base per poi eventualmente commentare i parametri non utilizzati: | Esempio generale con utilizzo di tutti i parametri. Utile per copiare velocemente uno scheletro con la struttura di base per poi eventualmente commentare i parametri non utilizzati: | ||
- | <code javascript> | + | <code javascript example.js> |
var title = 'title'; | var title = 'title'; | ||
var options = { | var options = { | ||
Linea 95: | Linea 95: | ||
| | ||
//OVERRIDE PERMISSIONS: if omitted defaults for related classes are used | //OVERRIDE PERMISSIONS: if omitted defaults for related classes are used | ||
- | allowInsertProjects : false, | + | allowInsertProjects: false, |
- | allowModifyProjects : true, | + | allowModifyProjects: true, |
- | allowDeleteProjects : false, | + | allowDeleteProjects: false, |
- | allowInsertTasks : true, | + | allowInsertTasks: true, |
- | allowModifyTasks : true, | + | allowModifyTasks: true, |
- | allowDeleteTasks : true | + | allowDeleteTasks: true |
}; | }; | ||
var tabWidget = openGwGanttTab(title, options); | var tabWidget = openGwGanttTab(title, options); | ||
Linea 107: | Linea 107: | ||
Esempio che utilizza la più generare API javascript openTab(). Modalità d'uso supportata, ma @Deprecated. Utilizzare una delle modalità più specifiche descritte sopra. | Esempio che utilizza la più generare API javascript openTab(). Modalità d'uso supportata, ma @Deprecated. Utilizzare una delle modalità più specifiche descritte sopra. | ||
- | <code javascript> | + | <code javascript example.js> |
var tabWidgetType = 'gwGantt'; | var tabWidgetType = 'gwGantt'; | ||
var identifier = 'gantt_project_programmation'+'_'+'show_project_in_gantt'+'_'+data.itemDB.id_project; | var identifier = 'gantt_project_programmation'+'_'+'show_project_in_gantt'+'_'+data.itemDB.id_project; | ||
Linea 121: | Linea 121: | ||
//withResourceChart: true, | //withResourceChart: true, | ||
//OVERRIDE PERMISSIONS: if omitted defaults for related classes are used | //OVERRIDE PERMISSIONS: if omitted defaults for related classes are used | ||
- | allowInsertProjects : false, | + | allowInsertProjects: false, |
- | allowModifyProjects : true, | + | allowModifyProjects: true, |
- | allowDeleteProjects : false, | + | allowDeleteProjects: false, |
- | allowInsertTasks : true, | + | allowInsertTasks: true, |
- | allowModifyTasks : true, | + | allowModifyTasks: true, |
- | allowDeleteTasks : true, | + | allowDeleteTasks: true, |
allowModifyProjectsPercentage: true, | allowModifyProjectsPercentage: true, | ||
limitEditing: true, | limitEditing: true, |