• Hello Fabrik Community

    Fabrik is now in the hands of the development team that brought you Fabrik for Joomla 4. We have recently transitioned the Fabrik site over to a new server and are busy trying to clean it up. We have upgraded the site to Joomla 4 and are running the latest version of Fabrik 4. We have also upgraded the Xenforo forum software to the latest version. Many of the widgets you might have been used to on the forum are no longer operational, many abandoned by the developers. We hope to bring back some of the important ones as we have time.

    Exciting times to be sure.

    The Fabrik 4.0 Official release is now available. In addition, the Fabrik codebase is now available in a public repository. See the notices about these in the announcements section

    We wish to shout out a very big Thank You to all of you who have made donations. They have really helped. But we can always use more...wink..wink..

    Also a big Thank You to those of you who have been assisting others in the forum. This takes a very big burden off of us as we work on bugs, the website and the future of Fabrik.

List and another form within a form

mariluzrm

Member
Hello.
I need to know if it is possible to have a list within a form (list of hobbies in the student form).
Second, if it is possible to have the form below your list (on the same page). That is, the hobby detail (hobby form) below the list of hobbies.
I have attached a jpg.
Thank you!!
 

Attachments

  • ejemplo_students.jpg
    ejemplo_students.jpg
    112.1 KB · Views: 66
Thank you very much.
You say: "you can use the content plugin to display (filtered) list above or under the form", but, is it possible to display the list inside the form (ie between two fields of the form)?
Thanks!!
 
You can (e.g in a group intro or anywhere in a custom form template), but then you need a custom list template without any HTML form tag, no list actions etc., pure display, doing {fabrik view=list ... layout=your-custom-list-layout}
Because you can't have nested HTML form tags.
 
Thanks. But two questions:

When you say "pure display", then the list can't be updated? (you say"no list actions, etc")

How can I learn how to do a custom form template and custom list template? Is it explain in wiki?

Thanks !!!
 
Ok:
Default list in default form's intro or outro (full functionality of list actions)
Code:
<div>
    form intro
    <form>
        list
    </form>
</div>

<form>
    form fields
</form>

<div>
    form outro
    <form>
        list
    </form>
</div>

Also ok:
Custom list template (<form> tags removed) in default form's group intro or outro (no list actions functional)
Code:
<form>
    form fields

    <div>
        group intro or outro

        <div>
            custom list template without form tags
        </div>
     
    </div>

    form fields
</form>

Not ok:
Default list with <form> tags somehow inserted inside another form (nested <form> = HTML violation = nothing at all working anymore)
Code:
<form>
    form fields

    <form>
        list
    </form>

    form fields
</form>
 
Last edited:
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top