The API is not entirely clean, but perhaps we could improve it upon your feedback. If you have specific request please report a new issue here: http://code.google.com/p/fbug/issues/list and we can discuss further.
Honza
Kuziu
unread,
Nov 11, 2011, 5:15:11 AM11/11/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Firebug
Hmmm or maby You know how to expand node in DOM TREE from other panel.
I want to select node in my panel and expand tree + select this node
in DOM TREE in HTML panel.
Think it will be easier for me :/
Thx
Jan Honza Odvarko
unread,
Nov 15, 2011, 2:59:33 AM11/15/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to fir...@googlegroups.com
On Friday, November 11, 2011 11:15:11 AM UTC+1, Kuziu wrote:
Hmmm or maby You know how to expand node in DOM TREE from other panel.
I want to select node in my panel and expand tree + select this node
in DOM TREE in HTML panel.
The following code expects that you have the current context:
// Select the HTML panel
var panel = Firebug.chrome.selectPanel("html");
// Get an element from the page document you want to select var content = context.window.document.getElementById("my-element");
// Update selection in the HTML panel (expanding happens automatically) panel.select(content);