Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    ID is being set as EventProxy in HTML

    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>
    Last edited by myIso; 21 Apr 2014, 07:09.

    #2
    Assuming you are looking for IDs on elements for automated testing purposes, please read the Automated Testing overview.

    Any other purpose: please read the DOM Integration overview.

    Comment

    Working...
    X