or
<
appSettings
>
<
add
key
=
"Telerik.Skin"
value
=
"Office2007"
/>
</
appSettings
>
I'm trying to set the fontWeight for the elements in a RadGrid with no luck. I can set Name, color, size, etc.. but no luck setting the fontWeight.
Does anyone know how to do this?
var myRadGrid = $find("<%=RadGrid1.ClientID%>");
myRadGrid.MasterTableView.get_element().style.fontSize = "6px" //works fine
myRadGrid.MasterTableView.get_element().style.fontWeight = "Bold" //doesn't work
myRadGrid.MasterTableView.get_element().style.fontWeight = "800" //doesn't work
myRadGrid.MasterTableView.get_element().style.font.bold = true //doesn't work
<
telerik:RadTagCloud
ID
=
"RadTagCloud"
runat
=
"server"
Width
=
"100%"
MaxFontSize
=
"34px"
Font-Names
=
"Helvetica,Arial"
BorderStyle
=
"None"
Sorting
=
"NotSorted"
>