Jump to content

Recommended Posts

Posted

Hi,

I need to remove all borders:

Border.png

 

my css:

.noPanelBorder {
    border: none;
    background: none;
}
 
my UnitEvents:
function beforeInit(sender, config)
{
  config.baseCls='noPanelBorder';
  config.cls='noPanelBorder';
 
}

 

  • 1 year later...
Posted
1 hour ago, adan200 said:

I have the same problem when I have this property.

MainForm.AlignmentControl := uniAlignmentClient.

Hi,

Can you make a simple trestcase for this ?!

Posted

Hi,

Can you try to use this approach for now ?!:

function form.boxready

function form.boxready(sender, width, height, eOpts)
{
    sender.body.addCls('x-docked-noborder-top');
    sender.body.addCls('x-docked-noborder-left');
}

 

  • Like 1
Posted
function form.boxready(sender, width, height, eOpts)
{
    sender.body.addCls('x-docked-noborder-top');
    sender.body.addCls('x-docked-noborder-left');
}

Works perfect!!!

Thank you.

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...