Kofax DOKuStar Validation User Manual

Page 104

Advertising
background image

DOKuStar Validation Programming Manual

Page

100

Note 1: You can also mix the modes: Use the editing mode for some fields, and the display mode for others

Note 2: Tables can only be edited in the editing window, not in the HTML view.

The HTML file itself can be created with any HTML editor (FrontPage etc.). To link it to the document model, you
must use an attribute named

id

in your tags, which has the field name as value.

In the editing mode, you will use an

input

tag, which has this id attribute set:

<input type="text" id='CustomerId'>

In the display mode, you will use a tag like

<span>

:

<span id='CustomerId'>

Which mode (display/editing) you use, is only determined by the HTML tags you use

(<input>

versus

<span>

,

<pre>

,..). Using the

id

is all that needs to be done to link to the Validation data!

Advertising