我在extjs中有嚮導,我在那裏放置下一個,後退和取消按鈕。 根據要求,我需要自動將焦點設置在下一個按鈕上。怎麼做。將自動對焦設置爲下一個按鈕
buildButtons : function() {
return [
{
text:'Back',
id:'backBtn',
hidden:true,
autoHeight:true,
action: 'Back'
},
{
text:'Next',
id:'nextBtn',
autoHeight:true,
hidden:false,
action: 'Next'
},
{
text:'Finish',
id:'finishBtn',
autoHeight:true,
hidden:false, // Comments below line if you want finished button on each panel.
//hidden:true,
action: 'Finish'
},
{
text:'Cancel',
id:'cancelBtn',
autoHeight:true,
hidden:false,
action: 'Cancel'
}
];
}
請檢查我的代碼,並幫我在這。 – Dhananjay
@Dhananjay文章編輯 – sra