How to create number field with Decimal ?
-
Hi Rilwis,
Please tell me how to create a number field with decimal?Below is my code but it not work properly. What am i wrong?
$meta_boxes[] = array( 'title' => __( 'Other Info', 'saokim' ), 'pages' => array( 'listing' ), 'context' => 'normal', 'priority' => 'high', 'autosave' => true, 'fields' => array( array( 'name' => __( 'Price', 'saokim' ), 'id' => "{$prefix}price", 'type' => 'number', 'std' => 0, 'step' => 0, ) ), 'validation' => array( 'rules' => array( "{$prefix}price" => array( 'required' => false, 'pattern' => '^\d+(\.\d{1,2})?$' ), ) ) );
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘How to create number field with Decimal ?’ is closed to new replies.