getLightboxValues

returns values of the lightbox's sections

object getLightboxValues();
objectthe object of values

Example

gantt.getLightboxValues();

Details

The method returns the values as a hash of 'section_name:value' pairs

const values = gantt.getLightboxValues();
values = {
    duration: 2,
    end_date: Fri Apr 05 2013 00:00:00 GMT+0300 (GTB Daylight Time),
    start_date: Wed Apr 03 2013 00:00:00 GMT+0300 (GTB Daylight Time),
    text: "Task #2.1"
}
See also
Back to top