across-tabs icon indicating copy to clipboard operation
across-tabs copied to clipboard

Having an issue

Open bryanu opened this issue 5 years ago • 1 comments

I have been able to get the 2 tabs to communicate from Parent to Child, but using child.sendMessageToParent("Hey Parent- Done with my work."), is never received by the parent.

I can send a message from the Parent to the Child using: parent.broadCastTo(tab, 'Yo! Message from parent!!'); and parent.broadCastAll('Yo! Broadcasted Message from parent to ALL!');

I can also detect when the Child tab is closed, but using the following, I never get a message from the Child: var config = { // onPollingCallback : function (c) { console.log("called: onPollingCallback", c); }, removeClosedTabs : true, onHandshakeCallback : function (h) { console.log("called: onHandshakeCallback", h); }, onChildDisconnect: function (m) { console.log("called: onChildDisconnect", m); },

    onChildCommunication: function () { console.log("called: onChildCommunication"); },
  }

Any suggestions?

Bryan

bryanu avatar Jul 29 '20 22:07 bryanu

@bryanu Hi, so sorry but I'm having trouble too...may I know how you got your message from parent to child? When I console.log my parent.getAllTabs() i get a response of all children tabs but child.getTabInfo() gives me null for some reason.

dhemutton avatar Oct 14 '20 08:10 dhemutton