I plan on using the awesome Meteor gantt packages you’ve created so the data is stored in Mongo. Would it be possible to collect data from one gantt, then transform that data for loading into another gantt that has a different configuration? What would be the best approach to this workflow? I’m open to using a different backend like php/mysql as well.
Hi,
There are two solutions
a) both gantts can be subscribed to the same Meteor collection ( they will have different configuration but will share the data )
or
b) you can use .serialize and .parse methods, to serialize data from the first gantt and load it into the second one.