8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
In the form.blade.php for a model, I defined several additionalFieldsets but the anchor navigation is not displayed.
Go to a form.blade.php define some addtional fieldsets like
@extends('twill::layouts.form', [ 'disableContentFieldset' => true, 'additionalFieldsets' => [ ['fieldset' => 'baseinfo', 'label' => twillTrans('modules/programs.baseinfo')], ['fieldset' => 'structure', 'label' => twillTrans('modules/programs.structure')], ['fieldset' => 'contents', 'label' => twillTrans('modules/programs.contents')], ['fieldset' => 'seo', 'label' => 'SEO'], ], ])
then wrapped the formfields inside the @section('fieldsets') with
@section('fieldsets')
@formFieldset(['id' => 'baseinfo', 'title' => twillTrans('modules/programs.baseinfo'), 'open' => true]) ... @endformFieldset
An anchor navigation should be shown in form of the model.
The anchor navigation is not shown.
Twill version: 3.3.1 Laravel version: 11.22.0 PHP version: 8.3.9 Database engine: MySQL 8.0.27
The text was updated successfully, but these errors were encountered:
fix area17#2650: Added parentheses to fix the order of evaluation bet…
4ec829f
…ween the null coalescing operator (??) and the ternary operator (?:)
Merge branch '3.x' into fix/area17#2650-additional-fieldset-anchor-na…
dc81279
…vigation
fix #2650: Added parentheses to fix the order of evaluation between t…
58dc470
…he null coalescing operator (??) and the ternary operator (?:)
Successfully merging a pull request may close this issue.
Description
In the form.blade.php for a model, I defined several additionalFieldsets but the anchor navigation is not displayed.
Steps to reproduce
Go to a form.blade.php define some addtional fieldsets like
then wrapped the formfields inside the
@section('fieldsets')
withExpected result
An anchor navigation should be shown in form of the model.
Actual result
The anchor navigation is not shown.
Versions
Twill version: 3.3.1
Laravel version: 11.22.0
PHP version: 8.3.9
Database engine: MySQL 8.0.27
The text was updated successfully, but these errors were encountered: