Jump to content

Recommended Posts

Posted

Hi,

 

I'm trying to display a UniDbMemo without a border.

I've set the BorderStyle to ubsNone but that does not seem to change it at runtime.

Any idea's?

 

Thx,

Bernaert Dominique

Posted

Hi Mohammad,

 

it's just a dbMemo placed on a unipanel.

I set the background of the panel and the same color on the dbmemo component.

I also set the borderstyle to ubsnone on the dbmemo but the border is still drawn.

See screenshot.

 

Thx

Dominique

post-5048-0-26900000-1525011124_thumb.png

Posted

Hi,

 

Also, one possible solution using custom CSS, can you try?:

 

CustomCSS:

.myMemo .x-form-text-wrap {
   border: none;
}

.myMemo .x-form-textarea {
   background-image: none;
}

beforeInit:

function beforeInit(sender, config)
{
    config.cls="myMemo";
}

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...