css for Editor template - multiple elements on single rows

css for Editor template - multiple elements on single rows

loukinglouking Posts: 259Questions: 52Answers: 0

Sorry if this is noob css question. I'm struggling to find the best html / css to put multiple elements on a single row in the Editor form for two situations:

  1. want distance and units on same line with no label for the units, e.g., Distance [ textbox ] [km, M select]
  2. want link on same line, e.g., Client [ textbox ] editlink

I'm using an Editor template so I have more control over the display. Also note I'm using jquery ui if that makes any difference.

http://live.datatables.net/vekapazu/2/ has some of the stuff I was trying. This example is without jquery ui, and with button instead of link.

This question has accepted answers - jump to:

Answers

  • allanallan Posts: 61,451Questions: 1Answers: 10,055 Site admin

    The key thing to remember here is that Editor will insert the fields with the same DOM structure that it uses in its own lightbox (e.g. label, input, error, message, etc) - but you can control where those field containers go.

    So it isn't possible to use a template to insert a new element into a field container. For that you have two options:

    1. A custom field plug-in (which is what I would recommend for a distance + unit input)
    2. Using field().input() to get a reference to the input element and then inserting any extra DOM elements next to it (using a little jQuery or DOM methods).

    Allan

  • loukinglouking Posts: 259Questions: 52Answers: 0

    For item 1, I have distance and units as two separate fields now. This is why I was thinking I could do something like wrapping the two fields, and within the wrap make some css mods to your container. I can configure the second field to not have a label, or use css to not display it but don't know how to put it on the same row with nice aesthetics.

    Are you saying to make it one combined field with two input elements, and handle the two real fields on the server for storage in the database as two fields? That sounds more complicated but I guess if the css solution won't work I would have to try that.

  • sinfuljoshsinfuljosh Posts: 25Questions: 0Answers: 5
    edited October 2018 Answer ✓

    I am doing similar form layouts and I found that using my own customer templates gives me the best option for laying out the fields how I want them.

    The template example that I base mine off of is here.
    https://editor.datatables.net/examples/simple/template-attribute.html

    I combine that with the builtin input styling found here.
    https://editor.datatables.net/examples/styling/fieldDisplay.html

    The multi column styling here
    https://editor.datatables.net/examples/styling/columns.html

    and some minor css adjustments to hide the labels for inline inputs on same row. and wrap them up in flex rows to control input field width.

    sample html for form.

    <div id="customForm">
        <div class="row">
            <fieldset class="origin">
                <legend>Origin</legend>
                <div class="row">
                    <div style="flex: 1;" data-editor-template="attention"></div>
                </div>
                <div class="row">
                    <div style="flex: 1;" data-editor-template="company"></div>
                </div>
                <div class="row">
                    <div style="flex: 2;" data-editor-template="address1"></div>
                    <div style="flex: 1;" data-editor-template="address2"></div>
                </div>
                <div class="row">
                    <div style="flex: 4;" data-editor-template="city"></div>
    
    <!--  below line is a cheap hack to ensure spacing for the "type=display" plugin input -->
    
                    <div style="flex: 1;align-self: flex-end;" class="DTE_Field DTE_Field_Type_display full block inline"><span style="font-size:13px;">, TX </span></div>
    
    
                    <div style="flex: 2;" data-editor-template="zip"></div>
                </div>
            </fieldset>
    

    and main CSS for flex:

    div.row {
        display: flex;
        flex-flow: nowrap;
    }
    
    #customForm fieldset {
        flex: 1;
        flex-direction: column;
    }
    

    My CSS is a mess because its still WIP, once I have it more polished I plan on going back and scrubbing my css and wrapping up related css into classes where I can, or else Id show you more, but if you need help let me know.

    My form layout.

    Zoomed in.

  • allanallan Posts: 61,451Questions: 1Answers: 10,055 Site admin
    Answer ✓

    @sinfuljosh - Nice examples of template layout. Thanks for sharing that with us!

    @louking

    Are you saying to make it one combined field with two input elements, and handle the two real fields on the server for storage in the database as two fields?

    Sort of. You could have two input elements (or one input, one select) in a single field. The set method of the field would split the value into the numeric and value parts. The get method would combine the values from the two inputs.

    So from the outside world it appears as a single field, but visually it is split for the end user into value and unit.

    Allan

  • loukinglouking Posts: 259Questions: 52Answers: 0

    Thanks, all. I will be experimenting based on @sinfuljosh and @allan 's responses.

  • wkeullwkeull Posts: 12Questions: 4Answers: 0

    @louking
    Thanks for the examples above, I am trying to get a custom form split into 3 columns and have been able to do this, however the width is quite narrow. Whenever I expand elements such as the entry field or labels for formatting it appears that the div.modal-dialog { element does not auto expand correctly. While I can force this element to the desired width it occurs site wide. Have you encountered this since your post above?

  • loukinglouking Posts: 259Questions: 52Answers: 0

    Sorry for the late reply. No I haven't seen what you're seeing. I suggest making a new question for Allan, with a jsbin example of the problem.

  • sinfuljoshsinfuljosh Posts: 25Questions: 0Answers: 5

    if you can post an example of your current layout to http://live.datatables.net/ ill see what i can do to help.

  • sinfuljoshsinfuljosh Posts: 25Questions: 0Answers: 5

    here is an example of how you can use flex to get multiple columns with decent spacing.

    http://live.datatables.net/koberaru/1/edit

This discussion has been closed.