Uploaded image for project: 'AppFormer'
  1. AppFormer
  2. AF-523 Preserve Workbench State on the URL
  3. AF-575

All the places that are target of a goTo must have a id (or a unique selector) associated

XMLWordPrintable

    • Icon: Sub-task Sub-task
    • Resolution: Unresolved
    • Icon: Major Major
    • None
    • None
    • None
    • None
    • 2017 Week 22-23, 2017 Week 24-25, 2017 Week 26-27, 2017 Week 28-29, 2017 Week 30-31, 2017 Week 32-33, 2017 Week 34-35, 2017 Week 36-37, 2017 Week 38-39, 2017 Week 40-41-42, 2017 Week 43-44, 2017 Week 45-46, 2017 Week 47-48, 2017 Week 49-50, 2017 Week 51-52, 2018 Week 01-02, 2018 Week 03-04, 2018 Week 05-06, 2018 Week 07-08, 2018 Week 09-10, 2018 Week 11-12, 2018 Week 13-14, 2018 Week 15-16, 2018 Week 17-18, 2018 Week 19-22, 2018 Week 23-24, 2018 Week 25-26
    • NEW
    • NEW

      All the places must have an id (or a unique selector) associated.

      Basically we have to deprecate/remove the call goto(place, widget) and support only goTo(place, HTMLElement )

      The work is divided in two steps:

      • ignore the call
      • get the new call to work on master and delete the deprecated one

      Example of conversion from an ID to the corresponding HTMLElement

      • HTML panel:
        String id = test1.getId();
        Div resolvedDiv = (Div) document.getElementById(id);
      • WIDGETS:
        String id = test.getId();
        Element el = DOM.getElementById(id);
        HTMLElement htmlElement = TemplateUtil.<HTMLElement>nativeCast(el);

              ma77eo Matteo Minnai (Inactive)
              ma77eo Matteo Minnai (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

                Created:
                Updated: