Display an LTR Editor dialog in an RTL page

Display an LTR Editor dialog in an RTL page

gribletgriblet Posts: 6Questions: 2Answers: 1

Link to test case:
Debugger code (debug.datatables.net):
Error messages shown:
Description of problem:
We have a dual language site where in the Arabic version we need to display the Editor dialog in LTR format but the rest of the page in RTL. This is because the users will be entering English text / numbers which don't display properly in RTL.

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,252Questions: 1Answers: 10,420 Site admin

    Editor's SCSS contains the following:

    html[dir="rtl"] {
        div.DTE_Body div.DTE_Body_Content div.DTE_Field {
            > label {
                float: right;
            }
    
            >div.DTE_Field_Input {
                float: left;
            }
        }
        
        div.DTE div.DTE_Form_Buttons button {
            float: left;
        }
    }
    

    So the selector for how it determines whether to move into RTL mode is done at the html tag level.

    To make it LTR inside a RTL page there are a couple of options:

    1) Remove the RTL CSS from Editor's CSS files, and add:

    div.DTE {
      direction: ltr;
    }
    

    That will basically cause Editor to be in LTR mode all the time. The downside to this approach is that if you need Editor in RTL mode, then you'd need to add in some more CSS for that.

    2) Override that CSS based on some selector that would determine if you have LTR Editor inside a RTL page. This has the benefit of not changing the Editor source CSS, but might be a little more complex to implement (not much - it is mostly just altering the SCSS I showed above - updated for whatever your selector would be).

    Let me know how you get on - this is an interesting one :)

    Allan

  • gribletgriblet Posts: 6Questions: 2Answers: 1

    Hi Allan - nearly right
    The labels have not moved to the left, still on the right.
    Ideally I would like the labels in both English and Arabic versions be be on the left of the fields.
    Best regards
    Uist

    English

    Arabic

  • allanallan Posts: 63,252Questions: 1Answers: 10,420 Site admin

    I've just tried it in this little example and it appears to work okay. It looks like perhaps the CSS to override wanted updated or something?

    If you can't get it working based on the CSS in that example, perhaps you can give me a link to your page so I can take a look into it please?

    Allan

  • gribletgriblet Posts: 6Questions: 2Answers: 1

    Hi Allan,
    Thanks very much with your help in this! Full disclosure... my name is Brent and I am working on this application with @griblet. Believe it or not, we are still 'finishing' the formatting request for this particular input form.
    FWIW, we have the Arabic version of the form styled correctly. See here...

    using css...

    div.DTE {
      direction: ltr;
    }
    div.DTE div.DTE_Body div.DTE_Body_Content div.DTE_Field > label {
      float: right;
      text-align: right;
      display: block;
      padding-top: 8px;
    }
    div.DTE div.DTE_Body div.DTE_Body_Content div.DTE_Field > div.DTE_Field_Input {
      float: right;
    }
    div.DTE div.DTE div.DTE_Form_Buttons button {
      float: right;
    }
    

    Great! However, now the client would like the english version of the form to have the labels to the side of the input fields the same way they are in Arabic. We cannot seem to figure out how to force that layout. Currently the english layout looks like so...

    We haven't been able to find any css that gets the field label and entry on the same horizontal line. I am hoping you have a suggestion!
    Thanks

  • allanallan Posts: 63,252Questions: 1Answers: 10,420 Site admin

    You probably need to "float" the label, but to be sure or give a more exact answer I would need to be able to access your page so I can see what CSS you have applied. If you can give me a link I can probably tell you want CSS you'd need.

    Allan

  • gribletgriblet Posts: 6Questions: 2Answers: 1
    Answer ✓

    Thanks, Allan! That pointed us in the right direction. Here is what got us what we needed...

    <style>
    div.DTE_Field_InputControl {
    float: right;
    }
    .col-lg-4 {
    float:left;
    }
    .DTE_Field{
    padding-bottom:10px;
    }
    </style>

Sign In or Register to comment.