MaskedInput Placeholder

Hi,

Does anyone knows how to put a placeholder in a masked input field?

Below is my code.

<?= $form->field($model, ‘price’,[‘addon’ => [

                'prepend' =&gt; ['content' =&gt; '₹', 'options'=&gt;['class'=&gt;'alert-success']],


            ],


            'feedbackIcon' =&gt; [


                


                'success' =&gt; 'ok',


                'error' =&gt; 'exclamation-sign',


                'defaultOptions' =&gt; ['class'=&gt;'text-primary']


            ],


            


            'inputOptions' =&gt; [


            


            'placeholder' =&gt; &quot;Enter Dealership Name&quot;,


            ]


            


            ])-&gt;textinput(['class' =&gt; 'form-control'])-&gt;label(&quot;Ex-­Showroom


        Price*&quot;)-&gt;widget('yii&#092;widgets&#092;MaskedInput', [


           // 'name' =&gt; 'input-33',


                'clientOptions' =&gt; [


                    'alias' =&gt;  'decimal',


                    


                     'placeholder' =&gt; 'test',


                                   


                    'groupSeparator' =&gt; ',',


                    'autoGroup' =&gt; true,


                    


                ],


        ]); ?&gt;

The placeholder does not show up. If anyone knows how to do it, it will be of great help.

Vaibhav