Using bootstrap, when editing columns, label appears?

Using bootstrap, when editing columns, label appears?

jpgnzjpgnz Posts: 4Questions: 1Answers: 0
edited May 2014 in Editor

Evening,

Total Datatables/Editor n00b, but loving it so far. Am using Datatables/Editor/TableTools/Bootstrap, everything is working mint, except when I go to edit a cell, the cell gets populated with the label of the column, as well as the input. Leaves pretty much zero room for the actual input field.

The HTML being returned when clicking on a cell is: http://pastebin.com/fBqRMR1S

Only really after the input. Where have I gone wrong/point me in the right direction.

Cheers;

This question has an accepted answers - jump to answer

Answers

  • jpgnzjpgnz Posts: 4Questions: 1Answers: 0

    Bump. Any ideas with this?

  • allanallan Posts: 61,744Questions: 1Answers: 10,111 Site admin
    Answer ✓

    Hi,

    Try adding this to your CSS:

    div.DTE_Inline div.DTE_Field label {
        display: none;
    }
    

    I think that should resolve it. That is going to be in the next version of Editor's Bootstrap integration!

    Regards,
    Allan

  • jpgnzjpgnz Posts: 4Questions: 1Answers: 0

    Thanks Allan, worked perfectly. My head was in a totally different direction, didn't even consider using CSS to just hide the elements!

    Cheers;

This discussion has been closed.