Page tree

Versions Compared

Key

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

...

HTML
<script type="text/javascript">

  var apiCall = AJS.params.contextPath + '/rest/confiforms/1.0/search/' + AJS.Meta.get("page-id") + '/formB/id:';

  function loadFormBDetails(formName, formId){
     AJS.$.ajax({
        url: apiCall + AJS.$('#' + formId).find('#i_option').val(),
        type: "GET",
        async: false,
        cache: false,
        success: function (data) {
          buildHtmlTable('#formBDetailsTable', data.list.entry.fields); 
   		}  
	});   
 }
</script>
ConfiForms (FormView) Registrations Control
formNameformA
typeEmbedded

optiontrue

...