7

I like to make the ui-layout-west section fixed width and like to hide the resizable bar. I tried this but I still see the right border of ui-layout-pane.

on css:

.ui-layout-west { 
    background: #F8F8FF  !important;  
    width: 300px !important;

}

and on Java script:

west: {                  
    enableCursorHotkey: false,                 
    closable: false,
    resizable: false,
    panespacing: 0 
}

Any ideas about how to remove teh resiable bar or hide it?

1 Answer 1

4

Try specifying the spacing_open and spacing_closed options instead of panespacing:

west: {
    enableCursorHotkey: false,
    closable: false,
    resizable: false,
    spacing_open: 0,
    spacing_closed: 0
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.