How do I set :complete variable

Is this the right way of setting :complete variable.

<Field name=':complete'>

<Default>

<s>true</s>

</Default>

<Derivation>

<s>true</s>

</Derivation>

</Field>

I have created a workflow that displays a search form (customized Find User Form). When the user enters the search details and hits on Search button the control doesn't seem to go to the next activity. The form is sent for approval. I tries setting ":complete " variable as mentioed above in my form. But still, it doesen't work.

Also, I tried setting complete variable in following way, but this too didn't work:

<Field name='complete'>

<Default>

<s>true</s>

</Default>

<Derivation>

<s>true</s>

</Derivation>

</Field>

[923 byte] By [the-gryphona] at [2007-11-26 17:04:08]
# 1

Hi,

Usually I use a set of buttons declared in a form library like this;

<Field name='nextCancelButtons'>

<Field name=':variables.formButton' button='true'>

<Display class='Button'>

<Property name='label' value='Next'/>

<Property name='value' value='Submit'/>

<Property name='command' value='Save'/>

</Display>

</Field>

<Field name=':variables.formButton' button='true'>

<Display class='Button'>

<Property name='label' value='Cancel'/>

<Property name='value' value='Cancel'/>

<Property name='command' value='SaveNoValidate'/>

</Display>

</Field>

<Field name=':complete'>

<Default>

<s>true</s>

</Default>

</Field>

</Field>

PaulWalker999a at 2007-7-8 23:31:54 > top of Java-index,Web & Directory Servers,Directory Servers...
# 2
Thanks Paul!
the-gryphona at 2007-7-8 23:31:54 > top of Java-index,Web & Directory Servers,Directory Servers...