Product Configurator Validation of Entered parameters
It would be nice to be able to have validation of entered parameters in the Product configurator
for example if entering data in a field that is below the minimum value required produce an error and ask to re-enter
-
This is a standard functionality with BEAS configurator. I will find you an example.
-
Validation of entered values in a parameter field is not implemented in the Beas Configurator.
The following customization example for the Configurator window (prd_link2) could help:
global function dw_2_rowfocuschanging
// check parameter 'width'
dw_2.find=parameter="width"
if <dw_2.item.inhalt:[value].value> n< 10 or <dw_2.item.inhalt:[value].value> n> 100 then
message=error$**$Width must be between 10 and 100.
post=post=dw_2.setrow=<value>
end if
end global
Please sign in to leave a comment.
Comments
2 comments