Product Configurator Validation of Entered parameters

Chris Hinchcliffe

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

Comentarios

2 comentarios

  • Comment author
    Andreas von Arx

    This is a standard functionality with BEAS configurator. I will find you an example.

    0
  • Comment author
    Volkmar Jahns

    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

    0

Iniciar sesión para dejar un comentario.