The ToolbarItemDefaultStyle-CssClass property is ignored in the WebADF toolbar control.
Last Published: August 25, 2014No Product Found
Bug ID Number
NIM072246
Submitted
September 1, 2011
Last Modified
April 2, 2025
Applies to
No Product Found
Version found
9.3.1
Status
Known Limit
After review by the development team, it has been determined that this issue is related to a known limitation with the software that lies outside of Esri's control. The issue's Additional Information section may contain further explanation.
Additional Information
10.1 was the last release of the .NET WebADF technology. Client APIs (JavaScript/Flex/Silverlight) are recommended for web application development.
Workaround
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>