Uncaught TypeError: domo.onVariablesUpdated is not a function

In my bricks app, I am trying to register for updates to variables, using the callback function domo.onVariablesUpdated(function(x) {console.log(x);}) as illustrated here (https://developer.domo.com/portal/e947d87e17547-domo-js#domoonvariablesupdated)

But I run into an Uncaught type error that onVariablesUpdated is not a function.

What am I missing here?

Best Answer

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    I've seen Domo Bricks behave differently depending on which one you've used as your base and which package it was using to build the brick. You could attempt to build your app as a fully custom app or try using a different brick as your base. I think I've had success with the 10 dataset brick.

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**

Answers

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    I've seen Domo Bricks behave differently depending on which one you've used as your base and which package it was using to build the brick. You could attempt to build your app as a fully custom app or try using a different brick as your base. I think I've had success with the 10 dataset brick.

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • Thanks @GrantSmith - that seemed to be the problem. When I used the Pro Code editor to create a newer version of the app, it worked.