0
我需要在Kendo Tabstrip中選擇選項卡(請參閱演示here),除了左鍵單擊之外,還需要使用右鍵單擊。這可能嗎?在Kendo Tabstrip中使用右鍵單擊選項卡
我需要在Kendo Tabstrip中選擇選項卡(請參閱演示here),除了左鍵單擊之外,還需要使用右鍵單擊。這可能嗎?在Kendo Tabstrip中使用右鍵單擊選項卡
這個腳本會工作,
$('#tabstrip [role="tab"]').bind("contextmenu",function(e){
$('#tabstrip').getKendoTabStrip().select($(this));
return false;
});
感謝,但是這並不像其他選項卡一直選擇具有作爲點擊相同的效果。我嘗試了'$('#tabstrip')。getKendoTabStrip()。deactivateTab(position);'但是我不知道如何填充'位置' – ps0604
@pgschr,我用firefox測試了這個腳本,它工作正常預期。發生在哪個瀏覽器中(其他選項卡保持選中狀態)? –
@鉻也測試過,工作正常 –