如何通過編程方式選擇TabContainer選項卡?還有我如何獲得選定的選項卡?如何從TabCointainer(AjaxToolKit)中選擇一個選項卡
回答
這裏是從here採取TabContainer
的屬性的完整列表:
TabContainer Properties
ActiveTabChanged (Event) - Fired on the server side when a tab is changed after a
postback
OnClientActiveTabChanged - The name of a javascript function to attach to the
client-side tabChanged event
CssClass - A css class override used to define a custom look and feel for the tabs.
See the Tabs Theming section for more details.
ActiveTabIndex - The first tab to show
Height - sets the height of the body of the tabs (does not include the TabPanel
headers)
Width - sets the width of the body of the tabs
ScrollBars - Whether to display scrollbars (None, Horizontal, Vertical, Both, Auto)
in the body of the TabContainer
TabStripPlacement - Whether to render the tabs on top of the container or below
(Top, Bottom)
與示例代碼有用的鏈接:
http://sandblogaspnet.blogspot.com/2009/04/setting-focus-to-particular-tab-in.html
tabContainer = tabContainer.control;
//Retrieving the tab using the get_activeTab method/property
var tab = tabContainer.get_activeTab();
var headerText = tab.get_headerText();
alert(headerText);
//Another way of retrieving the tab using the get_previousTab method/property
tab = tabContainer.getPreviousTab();
alert(tab.get_tabIndex());
3 Tips for Working with the AjaxControlToolkit's TabContainer Control
您可以設置的選項卡索引像...
tbcName.ActiveTabIndex = 3;
,同樣
tbcName.ActiveTabIndex// Return active tab index
請注意,標籤指數從0
當我點擊我的提交按鈕,我在選項卡3上,在回發它仍然把我帶到第一個選項卡..我想回到選項卡上索引我選擇 – user710502
選項卡控件不保留在回發標籤索引,請檢查這些鏈接http://www.codeproject.com/KB/ajax/maintaining-active-tab.aspx http://forums.asp.net /p/1300797/2548838.aspx –
- 1. 從ExtJS選項卡中選擇下一個選項卡
- 2. 如何從另一個選項卡選擇瀏覽器選項卡?
- 3. 如何從子片段中選擇下一個選項卡
- 4. 選擇/計數在2個選項卡上,如何生成一個選項卡?
- 5. AjaxToolkit選項卡控件作爲按鈕
- 6. AJAXToolkit動態隱藏選項卡?
- 7. 選擇標記卡住一個選項
- 8. 選項卡選擇下一個元素
- 9. 如何從某些選項卡中選擇網格列並將它們顯示在另一個選項卡中?
- 10. 如何從一個選項卡nativescript
- 11. 在選項卡控制器中選擇了兩個選項卡
- 12. MVVM從TabControl中選擇新選項卡
- 13. 如何在一個選項卡面板中的一個選項卡指向另一個選項卡?
- 14. 如何從一個按鈕中選擇一個選項?
- 15. 從另一個選擇框中選擇一個選項框
- 16. 如何在選擇其他選項卡時激活選項卡?
- 17. jQuery UI選項卡 - 如何選擇懸停的選項卡
- 18. 從另一個選項卡
- 19. 在Chrome中選擇多個選項卡
- 20. 我如何從選項卡中刷新另一個選項卡jQuery或javascript
- 21. jQuery選項卡從ID選擇選項卡
- 22. 如何綁定ctrl + 1以選擇第一個選項卡?
- 23. jQuery選項卡:禁用第一個選項卡,選擇第二個
- 24. 如何選擇一個選擇框第一個選項的jQuery
- 25. 如果上述選項卡中選擇
- 26. 如何從Angular4的引導標籤集中選擇選項卡?
- 27. 如何從數據庫中選擇其中一個選項?
- 28. 在更新中,如何從選擇框中選擇一個選項?
- 29. 在Silverlight中將選項卡從一個選項卡更改爲另一個選項卡方案
- 30. 如何從一個選擇選項發送到另一個選項?
開始我沒碰過那些在一段時間,但關閉我的頭頂,我beilive它有一個SelectedIndex屬性,您可以設置更改索引。 – asawyer