Apertura scheda gwPhoto360
La gwCalendar è una particolare tipologia di scheda descritta qui.
openGwPhoto360Tab()
Per aprire questa tipologia di tab è esposta l'apposita function openGwPhoto360Tab().
Parametri
photo360Id String, required. ItemId del record che contiene l'immagine 360
params Object, optional
gwClassName String, optional, default 'gwd_phototag'. gwClass name.
title String, optional, default null. If omitted is used the value of 'name' gwRecord's property as first choice or 'description' gwRecord's property as second choice.
tabWidgetId String, optional, default null. Used to eventually force the tab id. If omitted one is automatically generated
insertIndex Integer, opzional. Determina in quale posizione verrà aperta la scheda. Se omesso la scheda verrà aperta a destra, in ultima posizione
Esempi
Codice minimale.
- example.js
var photo360Id = '123';
var gwPhoto360Tab = openGwPhoto360Tab(photo360Id);
Esempio con utilizzo di tutti i parametri, anche opzionali
- example.js
var photo360Id = '123';
var params = {
gwClassName: 'gwd_phototag_2'
};
var gwPhoto360Tab = openGwPhoto360Tab(photo360Id, params);