In Firebug's HTML view, is there a way to inspect the underlying Dijit object of a widget's DOM node?

StackOverflow https://stackoverflow.com/questions/20977499

  •  25-09-2022
  •  | 
  •  

Вопрос

That is, by selecting an HTML element that would be a Dijit's containerNode, being able to inspect that Dijit's properties. Sort of a poor man's substitute for the old DojoFireBugExtension's widget view.

Or, assuming there's no appropriate break point, a work-around?

Это было полезно?

Решение

I usually copy the ID (generated or selfmade) and paste the following in my console:

dijit.byId("my_id");
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top