We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need to use FlatUI checkbox style in Yii2 :
<div class="col-md-3"> <?= Html::checkbox("search-name", false, ['id' => 'search-name', 'data-toggle' => 'checkbox']) ?> <?= Html::label("ファイル名", "search-name", ['class' => 'checkbox']) ?> </div> <div class="col-md-3"> <?= Html::checkbox("search-detail", false, ['id' => 'search-name', 'data-toggle' => 'checkbox']) ?> <?= Html::label("ファイル説明", "search-detail", ['class' => 'checkbox']) ?> </div>
and in JS file I call:
$("input:checkbox").radioCheck();
But when I click on the checkbox ,It can not work ,clicked but checkbox state not change
Following are include js files :
Please tell me what wrong? Thanks
The text was updated successfully, but these errors were encountered:
Hi @miyasita1958
You need to call:
$("input:checkbox").radiocheck();
without "C" capitalized.
Sorry, something went wrong.
No branches or pull requests
I need to use FlatUI checkbox style in Yii2 :
and in JS file I call:
But when I click on the checkbox ,It can not work ,clicked but checkbox state not change
Following are include js files :
Please tell me what wrong?
Thanks
The text was updated successfully, but these errors were encountered: