ConfiForms

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  •  LiveView to support lazy loading of a content + support for loading and reloading via scripting. For example, when you view macro is set to load the contents of a page with an id 1048608 and with a set name "myview", passing an additional parameter such as param1=Hello world (url encoded) and the param2 with a value true  
    Code Block
    AJS.$('body').trigger('cfLiveViewLoad', ["1048608", "myview", "param1=Hello%20world&param2=true"]);
    
    
  • LiveView triggers events that can be listened to to react on 
    • View load - cfLiveViewLoading 
    • View loaded - cfLiveViewLoaded 

      Code Block
          AJS.$('body').on("cfLiveViewLoading", function(event, contentId, viewName) {
           
          });
      
          AJS.$('body').on("cfLiveViewLoaded", function(event, contentId, viewName) {
           
          });
  • Fixed issue with filtering engine not handling correctly parameters with nested parenthesis 
  • Fixed issue with smart fields not loading correctly label values
  • Optimized and minified most of the CSS/JS resources to reduce the scripting/styles batch size

...