Using a on-change-listener on an oj-select component. We do not want this to fire on page load. I found a previous post saying to use this:
- self.changeHandler = function (event, data) {
- if (data.value) {
- console.log(data.value);
- }
- };
The "data" object is returning undefined. Has this changed in a newer release. What is the proper way to implement this?