Inline Editing - Style / CSS to not push row

Inline Editing - Style / CSS to not push row

MarkAndersonUKMarkAndersonUK Posts: 48Questions: 19Answers: 0

I am not great at CSS, so perhaps someone might know how to do this.
When editing inline, let say a select / dropdown field. When you click at the editor loads inline,
the entire row of grid data is pushed right to make room for the editor. Is there any way to
have the editor just load on-top of any other row data (covered it temporarily if needed) instead of pushing it around?

Here is an example :

BEFORE:

AFTER:

Thanks to all.

Answers

  • allanallan Posts: 63,831Questions: 1Answers: 10,518 Site admin

    Editor's bubble editing mode could be used.

    You could also look at adding some CSS - for example:

    td select {
      width: 100%;
    }
    

    might help resolve it.

    Allan

Sign In or Register to comment.