stacked input

stacked input

Andreas S.Andreas S. Posts: 207Questions: 73Answers: 4

I try to implement stacked input about the example of Stacked Inputs with bootstrap4 display .
I inserted the class in my css files, but two things are missing
* DTED_Lightbox_Wrapper did not exist. I think, i did not need it
* div.DTE div.DTE_Body div.DTE_Field > div.DTE_Field_Input, The class DTE_Field_Input did not exist.

I'm not sure, if the missing classes in the DOM, makes the problem.
Any idea to fix my Problem

This question has an accepted answers - jump to answer

Answers

  • colincolin Posts: 15,144Questions: 1Answers: 2,586

    Hi @Andreas S. ,

    It seems to work here. Could you modify that to demonstrate your problem, please.

    Cheers,

    Colin

  • allanallan Posts: 61,722Questions: 1Answers: 10,108 Site admin
    Answer ✓

    From a PM it looks like you are using Bootstrap 4, so yes, our demo CSS from that example wouldn't work.

    The best option for BS4 is probably to change the classes used for the layout - e.g. add:

    $.extend( true, $.fn.dataTable.Editor.classes, {
        "field": {
            "label":   "col-lg-12 col-form-label",
            "input":   "col-lg-12",
        }
    } );
    

    Allan

This discussion has been closed.