/docs/MyDocs

To get this branch, use:
bzr branch http://darksoft.org/webbzr/docs/MyDocs

« back to all changes in this revision

Viewing changes to xml/xforms.txt

  • Committer: Suren A. Chilingaryan
  • Date: 2009-04-09 03:21:08 UTC
  • Revision ID: csa@dside.dyndns.org-20090409032108-w4edamdh4adrgdu3
import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Formfaces
 
2
=========
 
3
    Conditionals
 
4
    ------------
 
5
    <xf:action ev:event="" if="xpath condition"/> - this still not supported,
 
6
    but stated by XForms specification.
 
7
    
 
8
    
 
9
    Catching Events
 
10
    ---------------
 
11
    This syntax already supported:
 
12
      <xf:trigger>
 
13
        <xf:dispatch ev:event="mouseover" name="DOMActivate" target="trigger"/>
 
14
      </xf:trigger>
 
15
    
 
16
    This requires XML Events support from the browser:
 
17
        <xf:message level="modal" id="id">test</xf:messages>
 
18
        <body ev:event="onmousemove" ev:handler="#id"/>
 
19
    and that is as well (running JS on the event):
 
20
        <script ev:event="mouseover" ev:observer="id"/>
 
21
    
 
22
Mozilla XPath
 
23
=============
 
24
    "matches" and other regexps are still not supported
 
25