KaxToolBarItemFocusedCssClass Property |
Gets or sets the Cascading Style Sheet (CSS) class applied when the toolBar item is
focused after tabbing to it, or by using its AccessKey
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string FocusedCssClass { get; set; }
Public Property FocusedCssClass As String
Get
Set
public:
virtual property String^ FocusedCssClass {
String^ get () sealed;
void set (String^ value) sealed;
}
abstract FocusedCssClass : string with get, set
override FocusedCssClass : string with get, set
Property Value
Type:
String
The CSS class applied when the toolBar item is focused. The default value is
String.Empty.
Remarks
By default the visual appearance of focused toolBar items is defined in the skin CSS
file. You can use the FocusedCssClass property to specify unique
appearance for the toolBar item when it is focused.
Examples
<style type="text/css">
.myFocusedCssClass .rtbText
{
font-weight:bold !important;
color:red !important;
}
</style>
<kettic:KaxToolBar id="KaxToolBar1" runat="server">
<Items>
<kettic:KaxToolBarButton
FocusedCssClass="myFocusedCssClass" Text="Bold" />
</Items>
</kettic:KaxToolBar>
See Also