开发者

attaching Tooltip to item without fixed element 'id'

开发者 https://www.devze.com 2022-12-11 21:07 出处:网络
I\'m trying to add tooltips to a Dojo application that I recently inherited. The problem I\'m having is that everything is created with dojoAttachPoint identifiers instead of with id\'s , such as :

I'm trying to add tooltips to a Dojo application that I recently inherited. The problem I'm having is that everything is created with dojoAttachPoint identifiers instead of with id's , such as :

so, I can't use "connectId= " when defining the tooltip, until I get a hold of the element's id that I want to connect to. Basically my question is, 开发者_如何学编程how can I find the id based on the dojoAttachPoint?

Thanks much for any suggestions!


The attach point is either going to be a domNode or a Widget based on whether it has a dojoType or not so if you have an attachPoint to a widgit then you can access connectid with this.myAttachWidget.connectid assuming that the attachPoint is in a widgets template.

0

精彩评论

暂无评论...
验证码 换一张
取 消