Skip to content
New issue

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

Problem mit Selectboxen nach dem Duplizieren #188

Open
Total-Reality opened this issue Jun 12, 2015 · 12 comments
Open

Problem mit Selectboxen nach dem Duplizieren #188

Total-Reality opened this issue Jun 12, 2015 · 12 comments

Comments

@Total-Reality
Copy link

Hallo,

wenn man Selectboxen einsetzt und auf "Die Reihe duplizieren" geht, dann kann man anschließend zwar die neue Selectbox anklicken, um die Optionen zu sehen, aber wenn man eine Option auswählt, wird diese nicht ausgewählt.
Das funktioniert erst wieder nachdem man unten auf Speichern gegangen ist.

Ich habe von MultiColumnWizard die Version 3.3.1 installiert, aber mit 3.2.3 gab es das Problem auch schon.
Es tritt sowohl in Contao 3.4.3 als auch 3.4.5 auf.
Getestet mit Safari und Chrome auf Windows 7.

Viele Grüße
Chris

@discordier
Copy link
Collaborator

@backbone87, @frontendschlampe Das hattet ihr doch gerade erst?

@frontendschlampe
Copy link

jo - hatten wir - das liegt am styledSelect - wir haben dann auf Choosen umgestellt und damit funzt es! Wir hatten leider noch keine Zeit, da genauer nachzuschauen, warum es mit dem styledSelect nicht funzt!

@garyee
Copy link
Contributor

garyee commented Jul 8, 2015

Ich habe das Problem auch.

@garyee
Copy link
Contributor

garyee commented Jul 8, 2015

Hi ich habe mal ein bisschen reingeschaut:

es hängt an der function reinitStylect

Wenn man das Version Control weg macht gehts

reinitStylect: function()
    {
        if(window.Stylect)
        {
           Stylect.convertSelects();
            }
        }
    }

Also auch nur wenn man wenn man die width:auto vom tl_select ausmacht.

@christianbarkowsky
Copy link

Der Tipp mit 'chosen'=>true ist klasse.

@juju2
Copy link

juju2 commented May 10, 2016

Ich habe das gleiche Problem, dass sich bei kopierten Selects keine Auswahl treffen lässt. Gab es dafür eine Lösung? Bei mir hat das mit chosen=>true nichts verändert.

Danke und Grüße
juju

@juju2
Copy link

juju2 commented May 12, 2016

Ok. chosen war doch die Lösung. Hatte es versehentlich in das eval der multicolumn-Definition gelegt statt in die evals der enthaltenen selects. Jetzt funktioniert es :)

@Total-Reality
Copy link
Author

Danke für die Hilfe, das funktioniert. Wird es in absehbare Zeit das ganze auch ohne chosen geben?

@discordier
Copy link
Collaborator

@Total-Reality auch hier wie immer: PR welcome. 😈

@zonky2 zonky2 added this to the Version 3.3 milestone Oct 10, 2017
@zonky2
Copy link
Collaborator

zonky2 commented Oct 10, 2017

ich habe auch nochmal mit verschiedenen Sachen in updateRowAttributes probiert - aber das dispose()zu übergehen und nur Stylect.convertSelects() aufzurufen

    reinitStylect: function()
    {

        if(window.Stylect)
        {
            if (versionCompare('3.2.3') >= 0) {
                $$('.styled_select').each(function(item, index){
                    //item.dispose();
                });
            }
            Stylect.convertSelects();
        }
    }

funktioniert bei mir
Links "normal" - rechts "choosen"
direkt nach Duplizieren bzw. neue leere Zeile
shot382

Bitte mal gegenprüfen!

@zonky2
Copy link
Collaborator

zonky2 commented Nov 16, 2017

@davidmaack was wird mit #188 (comment) ?

@zonky2
Copy link
Collaborator

zonky2 commented Nov 28, 2017

@davidmaack wenn es hier keine Fortschritte gibt, würde ich notgedrungen "den Berg zum Propheten bringen" und in MetaModels/attribute_geoprotection#11 ein chosen statt select-pur einbauen...

gmpf added a commit to qbus-agentur/contao-fallback-articles that referenced this issue Mar 2, 2018
Select doesn't get a fixed width automatically because, unlike the ModuleWizard,
MultiColumnWizard doesn't add the tl_select_column CSS class.

After row duplication, select options can only be selected when chosen is used:
menatwork/MultiColumnWizard#188
@zonky2 zonky2 modified the milestones: Version 3.3, Future Mar 23, 2018
@stefanheimes stefanheimes self-assigned this Nov 29, 2018
@stefanheimes stefanheimes modified the milestones: Future, 3.4.0 Nov 29, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

8 participants