Setting rate policies

  1. It’s also important to pass true to the callback function.
  subscribe: function(el, callback) {
    $(el).on('keyup.customTextBinding input.textInputBinding', function(event) {
      callback(true); 
    });

    $(el).on('change.customTextBinding', function(event) {
      callback();
    });
  },
OSUICode::updateCustomTextInputExample(6)