Jump to content

Form. To remove the border.


Volk65

Recommended Posts

Hi. I need to remove the border from the form.

I read the forum and found:

function window.afterrender(sender, eOpts)
{
  Ext.get(sender.id).el.setStyle("padding", 0);
  Ext.get(sender.id).el.setStyle("border-width", 1);
  Ext.get(sender.id).el.setStyle("-webkit-border-radius", 0);
  Ext.get(sender.id).el.setStyle("-moz-border-radius", 0);
  Ext.get(sender.id).el.setStyle("border-radius", 0);
}

It works, but the top of the form there is panel: Align:=alTop. And I have the effect - the panel is not realigned. See the attachment

how to fix it?

post-4024-0-25963900-1512668487_thumb.png

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