The ToolbarItemDefaultStyle-CssClass property is ignored in the WebADF toolbar control.
最後に公開された状態: August 25, 2014No Product Found
不具合 ID 番号
NIM072246
送信されました
September 1, 2011
最終更新日
April 2, 2025
適用対象
No Product Found
見つかったバージョン
9.3.1
ステータス
Known Limit
開発チームによる確認後に、この問題が、Esri の管理の範囲外にあるソフトウェアの既知の制限に関するものであると判断されました。 問題の「参考情報」セクションに、さらに詳細な説明が示されていることがあります。
参考情報
10.1 was the last release of the .NET WebADF technology. Client APIs (JavaScript/Flex/Silverlight) are recommended for web application development.
対処法
Manually change the style for the toolbar by searching for the toolbar by ID and then overriding the toolbar events.<script type="text/javascript" language="javascript"> // Initialize the tool var myTool = document.getElementById("Toolbar1MyTool"); myTool.onmouseover = CustomToolbarMouseOver; function CustomToolbarMouseOver() { ToolbarMouseOver('Toolbar1', 'MyTool'); myTool.style.cursor = "hand"; }</script>