Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

data.value returns undefined

Chad BoomFeb 20 2018 — edited Feb 21 2018

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:

  1.   self.changeHandler = function (event, data) { 
  2.             if (data.value) { 
  3.                 console.log(data.value); 
  4.             } 
  5.         };

The "data" object is returning undefined.  Has this changed in a newer release.  What is the proper way to implement this?

Comments
Post Details
Added on Feb 20 2018
4 comments
524 views