I'd like implement to "gadgets.views.requestNavigateTo" in the shindig container. So I write like this, views feature.

requestNavigateTo : function(view, opt_params, opt_ownerId) {
  if (typeof view !== "string") {
    view = view.getName();
  }   
  gadgets.rpc.call(null, "requestNavigateTo", null, view, opt_params, opt_ownerId);
},  

And then I call like that.

gadgets.rpc.register("requestNavigateTo", navigateHandler);
function navigateHandler(view, opt_params) {
   alert(view); }

But navigateHandler function doesn't work. So I'd like know how do they gadgets.rpc.register and gadgets.rpc.call work. could you please let me know?

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.