javascript - Extjs - Dock Button to bottom of the Panel -


i want align credentials button bottom of panel in extjs, there specific property buttons inside panel. no toolbar involvement here:

enter image description here

fiddle link : https://jsfiddle.net/arya9/rmad2cpb/

hope below code per requirement.

 ext.create('ext.window',{         width:200,         height:400,         layout:'vbox',         items:[{          xtype:'button',          text:'first'         },{           xtype:'panel',           flex:1         },{          xtype:'button',          text:'second'         }]     }).show(); 

you can check here in sencha fiddle working https://fiddle.sencha.com/#view/editor&fiddle/25a9


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -