Jump to content

how to remove one side border of panel


uniguibbs

Recommended Posts

Hi uniguibbs.

 

One of the solutions:

 

Try

 

add afterrender on panel

function afterrender(sender, eOpts)
{
  Ext.get(sender.id + "-body").setStyle("border-left", 0);
  Ext.get(sender.id + "-body").setStyle("border-right", 0);
}
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...