Place function parameters in the correct order. You must specify all input parameters before the last input parameter can be specified, or specify a null ("") to accept the default. For example, you can call DTW_TB_INPUT_TEXT as in the following example:
@DTW_TB_INPUT_TEXT(myTable, "1", "2", "", "", "32")
In the above example the fourth and fifth parameters use default values. Include them as nulls to indicate that "32" is the value for MAXLENGTH in the generated HTML. The final parameter is not specified, so the default value is used. If you choose to accept the default value for MAXLENGTH and the two previous parameters, omit them, as shown below:
@DTW_TB_INPUT_TEXT(myTable, "1", "2")
You must specify intermediate null values in the parameter lists for input parameters when subsequent non-null input parameters exist. You do not need to specify intermediate null input parameters before specifying your final output parameter.