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 -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -

Python Tornado package error when running server -