Giter VIP home page Giter VIP logo

Comments (6)

L0rD59 avatar L0rD59 commented on August 16, 2024

Do you have add your templating in twig configuration in app/config/config.yml ?

twig:
    form:
        resources:
            # Default:
            - form_div_layout.html.twig
            # Example:
            - MyBundle::form.html.twig

from lexikformfilterbundle.

jbator avatar jbator commented on August 16, 2024

My config looks like this:

twig:
    debug:            %kernel.debug%
    strict_variables: %kernel.debug%
    form:
        resources:
            - 'MyBundle:Form:fields.html.twig'
            - 'LexikFormFilterBundle:Form:form_div_layout.html.twig'

from lexikformfilterbundle.

L0rD59 avatar L0rD59 commented on August 16, 2024

Maybe it's troubleshooting with TwigBundle i haven't try with the same configuration,

Ok the FrameworkBundle search in app/Resources then in inherit bundle, then in the bundle. But maybe TwigBundle don't !?

In my case i have inherit the FormFilterBundle

class LIGFormFilterBundle extends Bundle
{
    public function getParent()
    {
        return 'LexikFormFilterBundle';
    }
}

And i have extends the original template in MyBundle/Resources/views/Form/form_div_layout.html.twig

{% extends 'LexikFormFilterBundle:Form:form_div_layout.html.twig' %}
#override here your block

And i put both template of both Bundle in Twig configuration

# Twig Configuration
twig:
    form:
        resources:
            - LexikFormFilterBundle:Form:form_div_layout.html.twig
            - LIGFormFilterBundle:Form:form_div_layout.html.twig

Can you try something like that ?

from lexikformfilterbundle.

jbator avatar jbator commented on August 16, 2024

Ok, i found working solution:

I created new twig file

MyBundle/Resources/views/Form/form_div_layout.html.twig

which doesn't extend anything but have only customized block code:

{% block filter_date_range_widget %}
    <div class="filter-date-range">
        <div class="filter-date-range-left">
            {{ form_label(form.left_date) }}
            {{ form_widget(form.left_date, {'attr': attr}) }}
        </div>
        <div class="filter-date-range-right">
            {{ form_label(form.right_date) }}
            {{ form_widget(form.right_date, {'attr': attr}) }}
        </div>
    </div>
{% endblock filter_date_range_widget %}

and included this file in my config:

# Twig Configuration
twig:
    form:
        resources:
            - 'MyBundle:Form:fields.html.twig'
            - 'LexikFormFilterBundle:Form:form_div_layout.html.twig'
            - 'MyBundle:Form:form_div_layout.html.twig'

@L0rD59 thanks for pointing me to correct solution

from lexikformfilterbundle.

L0rD59 avatar L0rD59 commented on August 16, 2024

Can you close this issue please ?

Thx, and good road

from lexikformfilterbundle.

jbator avatar jbator commented on August 16, 2024

Ok, closing and thanks.

from lexikformfilterbundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.