File: WOTable.api

package info (click to toggle)
sope 5.12.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,588 kB
  • sloc: objc: 169,223; sh: 3,823; ansic: 3,409; javascript: 446; python: 318; makefile: 185
file content (41 lines) | stat: -rw-r--r-- 1,406 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" standalone="yes"?> 

<wo class="WOTable">
  <binding name="list"                 passthrough="NO" required="YES"/>
  <binding name="item"
           passthrough="NO"
           required="YES"
           settable="YES"
  />
  <binding name="maxColumns"           passthrough="NO"/>
  <binding name="index"                passthrough="NO"/>
  <binding name="col"                  passthrough="NO"/>
  <binding name="row"                  passthrough="NO"/>
  <binding name="cellAlign"            passthrough="NO"/>
  <binding name="cellVAlign"           passthrough="NO"/>
  <binding name="rowBackgroundColor"   passthrough="NO"/>
  <binding name="cellBackgroundColor"  passthrough="NO"/>

  <binding name="tableBackgroundColor" passthrough="NO"/>
  <binding name="border"               passthrough="NO"/>
  <binding name="cellpadding"          passthrough="NO"/>
  <binding name="cellspacing"          passthrough="NO"/>

  <!-- SOPE -->
  <binding name="horizontal" defaults="YES/NO" />
  <binding name="hasOwnTDs"  defaults="YES/NO" />

  <validation message="&apos;list&apos; must not be a constant">
    <and>
      <bound name="list"/>
      <ungettable name="list"/>
    </and>
  </validation>

  <validation message="&apos;item&apos; must be bound when &apos;list&apos; is bound">
    <and>
      <bound name="list"/>
      <unbound name="item"/>
    </and>
  </validation>
</wo>