Skip to content

Files

Latest commit

 

History

History

j-Changer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

j-Changer

This component captures inline changes and can affect the validate component.

  • jComponent v19|v20

An example to understand:

<ui-plugin>

	...
	...

	<ui-component name="changer" path="?.pictures"></ui-component>

	<nav>
		<ui-component name="validate" path="?">
			<button name="submit" disabled><i class="ti ti-check-circle mr5"></i>SUBMIT</button>
			<button name="cancel">Cancel</button>
		</ui-component>
	</nav>
</ui-plugin>

<script>
	PLUGIN(function(exports) {
		exports.upload = function() {
			exports.push('pictures @change', { ... });
		};
	});

</script>

Author