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
My Code in "/manage/shop/index" 'shop-form', 'action' => ['/manage/shop/update'], 'options' => ['class' => 'form-horizontal'], 'fieldConfig' => [ 'template' => "{label}\n
When i click Apply, It's request GET to url /manage/shop/index
Also I read you demo page and document many time.
The text was updated successfully, but these errors were encountered:
Your code will not work and is incorrect - since its causing an INVALID HTML due to nested forms and will be treated as invalid HTML by browsers.
Note that Editable widget generates its own FORM tag and inputs inside - so you should NEVER embed a editable widget inside another form.
Sorry, something went wrong.
No branches or pull requests
My Code in "/manage/shop/index"
'shop-form', 'action' => ['/manage/shop/update'], 'options' => ['class' => 'form-horizontal'], 'fieldConfig' => [ 'template' => "{label}\n
'name', 'value' => $model->name, 'header' => 'Name', 'size'=>'md', 'options' => ['class'=>'form-control', 'placeholder'=>'Enter shop name...'], ]); ?>
When i click Apply, It's request GET to url /manage/shop/index
Also I read you demo page and document many time.
The text was updated successfully, but these errors were encountered: