Problem with inline editing

Problem with inline editing

Hildeb67Hildeb67 Posts: 57Questions: 16Answers: 1

I have a DataTable in a tab bar. When editing the ANZAHL field, a frame is displayed in which the editor field is. What could be the reason.

Can anyone explain to me?

Greetings Chris

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 62,990Questions: 1Answers: 10,367 Site admin
    edited November 2023

    I'm not sure I'm afraid. I'd need a link to the page showing the issue so I can "inspect" the document and what is in it at that time.

    If you can't make the link public, you can PM it to me by clicking my forum user name above and then "Send message".

    Allan

  • allanallan Posts: 62,990Questions: 1Answers: 10,367 Site admin
    Answer ✓

    Many thanks for the PM with the link. It took me a little while to realise it, but it is an inline editable inside an Editor modal! I haven't tested that before, so it is quite possible you might run into one or two issues along the way - this styling one included.

    To resolve for the moment, you could add this CSS to your page:

    table.dataTable div.DTE div.DTE_Field > div.DTE_Field_Input {
      float: none;
      width: 100%;
    }
    
    table.dataTable div.DTE div.DTE_Field > div.DTE_Field_Input input {
      border: none;
    }
    

    Regards,
    Allan

  • Hildeb67Hildeb67 Posts: 57Questions: 16Answers: 1

    Great thanks Allan, that worked.

Sign In or Register to comment.