Ankheur's avatar

Ankheur liked a comment+100 XP

4mos ago

Calculated value on a form field

Ok, I found the solution to responding to changes in the page_count field. I had to add:

->afterStateUpdated(function (Set $set, Get $get, $state) {
    $price = $state * 0.002;
    $set('suggested_price_2', '$' . number_format($price, 2));
})

to the page_count field.