Uploaded image for project: 'OFBiz'
  1. OFBiz
  2. OFBIZ-11808 Improve screen engine with decrease technology dependence
  3. OFBIZ-11812

New child element callback on link to go out information on dynamic navigation from form

    XMLWordPrintableJSON

Details

    • Sub-task
    • Status: Closed
    • Major
    • Resolution: Fixed
    • Trunk
    • None
    • framework/widget

    Description

      When a user realize an updating, creation, or run a complex tunneling process, if after that you need to refresh a screen area without reload all, the action form need to know what it want to update.

       <form name="AddProductStoreAssoc" type="single" target="AddProductStoreToGroup">
           <field name="productStoreGroupId"><hidden/></field>
           ...
           <on-event-update-area area-target="EditProductStoreGroupAndAssoc" event-type="submit" area-id="centerdiv">
               <parameter param-name="productStoreGroupId" from-field="productStoreGroup.productStoreGroupId"/>
           </on-event-update-area>
       </form>
       

      This create a dependency between the screen where is displaying information and the updating form. Instead create more complicate case to pilot the dynamic interaction between the displaying result and the updating action, we change the reasoning. A user want a good displaying after his operation is finished, so after he terminated his process.

      We introduce a new element, callback on the link. A user start a process in general after follow a link, and when is done, we follow the callback to call the area to refreah.

       <link target="EditProductCategoryRollup" link-type="layered-modal">
           <auto-parameters-entity entity-name="ProductCategoryRollup"/>
           <callback area-target="ListProductCategoryChildRollup">
               <parameter param-name="productCategoryId" from-field="parentProductCategoryId"/>
           </callback>
       </link>
       

      With this the developer is concentrate on the start and the end of a process. The form or the tunneling process isn't linked to the final screen.

      Attachments

        1. OFBIZ-11812.patch
          27 kB
          Gil Portenseigne

        Activity

          People

            pgil Gil Portenseigne
            nmalin Nicolas Malin
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: