File: examples/4gl/ex_htmlElement.xml

Recommend this page to a friend!
  Classes of philippe thomassigny   WAJAF   examples/4gl/ex_htmlElement.xml   Download  
File: examples/4gl/ex_htmlElement.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WAJAF
Build single page applications
Author: By
Last change: first commit
Date: 2 years ago
Size: 1,076 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8" ?> <application id="ex_htmlElement"> <element type="htmlElement"><![CDATA[ This is an HTML element. We can add any <b>html tag</b> in it and it is wrapped into a division. ]]></element> <element type="htmlElement" style="margin: 10px; border: 1px solid red;"><![CDATA[ This HTML element is into its division with a margin of 10 pixels and a red border. ]]></element> <element type="htmlElement" style="margin: 10px; padding: 10px; border: 1px solid blue; cursor: pointer;"><![CDATA[ This HTML element have a <b>HELP BUBBLE</b> activated on it. You can also <b>click it</b>. ]]> <help> <summary><![CDATA[Help on element]]></summary> <title><![CDATA[Help on element]]></title> <description><![CDATA[This help bubble is only here for teaching purpose. The HTML element is activated with this help.<br />]]></description> </help> <event type="onclick"> <code><![CDATA[ function click(e) { alert('You have clicked the element.'); } ]]></code> </event> </element> </application>