Hi,
RangeSlider do not appears on the board.
class PurchasePrice extends RangeSlider
{
protected function onInit()
{
->value([20,80])
->range([
"min"=>0,
"max"=>100,
])
->scale(5)
->step(10)
->format([
"prefix"=>"",
"decimals"=>2,
])
->rtl(true)
->vertical(false);
}
protected function onChange($request,$response)
{
$this->sibling("AssetsTable")->update();
}
}
On the board (path hidden)
use [...]PurchasePrice;
...
Row::create([
[
PurchasePrice::create()
],
[
]
]),