Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Latest commit

 

History

History
19 lines (16 loc) · 643 Bytes

form-money.md

File metadata and controls

19 lines (16 loc) · 643 Bytes

Money Form Type

Input text with auto money number format

Code Sample

$this->form[] = ['label'=>'Price','name'=>'price','type'=>'money'];

Custom Money Format

$this->form[] = ['label'=>'Price','name'=>'price','type'=>'money', 'priceformat_parameters' => ['prefix' => 'Rp. ', 'thousandsSeparator' => '.', 'centsSeparator' => ',', 'centsLimit' => 2 ]];
// Rp. 1.000,00

Add priceformat_parameters attribute value with JQuery Price Format parameters

What's Next

Table Of Contents