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:
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
Post a Comment