Jacob D
12/16/2020, 7:08 PMinitialize: function(options) {
options.pdp.on('afterOptionSelection', function(event) {
console.log(options.pdp.getItemInfo());
});
}
But that just seems to get information on the parent item, not the individual child item being selected. Anybody have any ideas or experience here?
You used to just be able to do
this.model.on('change', this.onModelChange, this);
and get data on the model, but I’m not sure how to do that in an extension.