All Projects → yiisoft → yii-masked-input

yiisoft / yii-masked-input

Licence: BSD-3-Clause License
Yii Framework Masked input widget Extension

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to yii-masked-input

pictureflow
Cover Flow clone at a Qt widget
Stars: ✭ 16 (-57.89%)
Mutual labels:  widget
em-beer-manager
Manage your beers with WordPress. Integrates simply with Untappd beer checkins. Great for everyone from home brewers to professional breweries!
Stars: ✭ 15 (-60.53%)
Mutual labels:  widget
height-slider
A customisable height slider for Flutter.
Stars: ✭ 15 (-60.53%)
Mutual labels:  widget
awesome-widgets
Minimalistic Plasmoid set
Stars: ✭ 60 (+57.89%)
Mutual labels:  widget
slack widgets
An abstraction of the JSON structure needed to create widgets in Slack message attachments
Stars: ✭ 14 (-63.16%)
Mutual labels:  widget
db-oracle
Oracle Database support for Yii
Stars: ✭ 21 (-44.74%)
Mutual labels:  yii3
yii2-cookiemonster
Yii extension to manage cookie warning
Stars: ✭ 16 (-57.89%)
Mutual labels:  widget
crypto-price-widget
Easily track the price of your favorite crypto in an attractive desktop widget
Stars: ✭ 72 (+89.47%)
Mutual labels:  widget
auth-jwt
www.yiiframework.com/
Stars: ✭ 28 (-26.32%)
Mutual labels:  yii3
files
Useful methods to manage files and directories
Stars: ✭ 27 (-28.95%)
Mutual labels:  yii3
yii2-editable-widget
X-Editable Widget for Yii2
Stars: ✭ 56 (+47.37%)
Mutual labels:  widget
awesome
Configs for awesomeWM
Stars: ✭ 42 (+10.53%)
Mutual labels:  widget
SPPerspective
Widgets iOS 14 animation with 3D and dynamic shadow. Customisable transform and duration.
Stars: ✭ 271 (+613.16%)
Mutual labels:  widget
BlockEditText
Block EditText is a library provide an input view present in multiple block style that common use in TAC or credit card field.
Stars: ✭ 113 (+197.37%)
Mutual labels:  widget
yii-gii
Yii code generator extension
Stars: ✭ 27 (-28.95%)
Mutual labels:  yii3
AppStore-Connect-Widget
Open source AppStore sales monitor with widget
Stars: ✭ 36 (-5.26%)
Mutual labels:  widget
cache
PSR-16 compatible cache library
Stars: ✭ 30 (-21.05%)
Mutual labels:  yii3
github-profile-card
Simple and easy to use widget with your GitHub profile — No dependencies
Stars: ✭ 98 (+157.89%)
Mutual labels:  widget
yii2-google-analytics
Google Analytics Universal tracking widget.
Stars: ✭ 14 (-63.16%)
Mutual labels:  widget
MTCircularSlider
A feature-rich circular slider control written in Swift.
Stars: ✭ 118 (+210.53%)
Mutual labels:  widget

Yii Framework Masked input widget Extension


This is the Masked Input extension for Yii framework. It provides a masked input widget based on jQuery Input Mask plugin.

For license information check the LICENSE-file.

Latest Stable Version Total Downloads Build Status

Installation

The preferred way to install this extension is through composer.

composer require --prefer-dist yiisoft/yii-masked-input

Usage

To use MaskedInput, you must set the [[mask]] property. The following example shows how to use MaskedInput to collect phone numbers:

echo MaskedInput::widget([
    'name' => 'phone',
    'mask' => '999-999-9999',
]);

You can also use this widget in an [[ActiveForm]] using the [[ActiveField::widget()|widget()]] method, for example like this:

<?= $form->field($model, 'from_date')->widget(Yiisoft\Yii\MaskedInput\MaskedInput::class, [
    'mask' => '999-999-9999',
]) ?>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].