Error selecting more than one value in component VI_Edit_MultiLimitedValues

Hi!

In v8.1.3 I'm using VI_Edit_MultiLimitedValues for one of my ITShop products. I've modified CustomProperty10 in ShoppingCartItem to hold a list of values, used this column in a request property for my product and created a column-dependent reference of this column to the VI_Edit_MultiLimitedValues component. As a test, I've defined a list of two values for CustomProperty10 : 0 and 1. In the web interface I can see check boxes for each value when I request the product. So far, so good. Now:

  • If I select just one value, everything is fine.
  • If I select two values, I get the error: " Value '0[chr07]1' is not valid for field 'CustomProperty10:' (Valid values: 0, 1)."


Seems like the column is expecting a comma (chr44) and a space , as a value separator, instead of chr07. Therefore I've created a custom VI_Edit_MultiLimitedValues component to fix it, modified the column reference to point to it,but still the error persists. Whenever I select more than one element, I get the error: "Value '0, 1' is not valid for field 'CustomProperty10:' (Valid values: 0, 1)". How could I properly fix this?

Thanks!