Hi everyone, I'm not native english speaker so sorry for mistyping. So I'm building a ShoppingCar for my famili's company and in the tutorial the guy was doing something like this:
Collect(colShoppingCart; {Title: ThisItem.Title; PreciodelProducto: ThisItem.Precio; ProductoID: ThisItem.ID; Cantidad: Slider2.Value; TamañodelProducto: Dropdown1.Selected.Result; Subtotal: (Slider2.Value * ThisItem.Precio )}); Reset(Slider2);Reset(Dropdown1); Set(varShowSuccess, true)
But I got a problem doing the reset 'cause my current project don't let me use:
;Reset(Slider2); Reset(dropdown1);Set(varShowSuccess,true)
Is there any form to rapair this, I'd love reading you mates!