attribute元素

attribute元素是用来定义XML元素属性的元素。妥善使用,它可以使页面更具可读性。下面的例子和前面所述的hello.zul是等价的。

<button label="Say Hello">
    <attribute name="onClick">alert("Hello World!");</attribute>
</button>

你可以决定是否使用trim属性来省略属性值开头和末位的值,使用方法如下:

<button>
   <attribute name="label" trim="true">
      The leading and trailing whitespaces will be omitted.
   </attribute>
</button>