In smartgwt I do set the ID for an element. But when I see the element in the HTML the value is assigned to "eventProxy" attribute instead "ID" attribute. I would appreciate if you could provide me how to retrieve the element using the ID that I have set. How to locate an element using the eventproxy attribute?
Code:
HLayout panels = new HLayout();
panels.setID("testPanel")
When HTML is created:
<div id="isc_20" eventproxy="testPanel"...
</div>