<
telerik:RadWindowManager ID="RadWindowManagerPartPicker" ShowContentDuringLoad="false" VisibleStatusbar="false"
ReloadOnShow="true" runat="server" Skin="Vista" Opacity="50" KeepInScreenBounds="true" DestroyOnClose="true">
<Windows>
<telerik:RadWindow ID="PartsListWindow" runat="server" Behaviors="Close" OnClientClose="OnClientClose" VisibleStatusbar="false"
NavigateUrl="../Editor.aspx" Skin="Vista">
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
<
script type="text/javascript">
//<![CDATA[
function openWin() {
var oWnd = radopen("Editor.aspx", "PartsListWindow");
}
//]]>
</script>
| <httpHandlers> |
| <add verb="*" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler, Telerik.Web.UI" validate="false" /> |
| <add verb="*" path="Telerik.RadUploadProgressHandler.aspx" type="Telerik.WebControls.RadUploadProgressHandler, RadUpload.Net2" /> |
| </httpHandlers> |
| and... |
| <httpModules> |
| <add name="RadUploadModule" type="Telerik.WebControls.RadUploadHttpModule, RadUpload.Net2" /> |
| </httpModules> |
| <rad:RadProgressManager id="Radprogressmanager1" runat="server" /> |
| <rad:RadProgressArea id="RadProgressArea1" runat="server" /> |
| * |
| * |
| * |
| <rad:RadProgressManager id="Radprogressmanager1" runat="server" /> |
| <rad:RadProgressArea id="RadProgressArea1" runat="server" /> |
| <rad:RadUpload ID="RadUpload1" Runat="server" ControlObjectsVisibility="All" |
| InitialFileInputsCount="3" MaxFileInputsCount="5" MaxFileSize="1000000" |
| TargetFolder="~/Files" /> |

Sys.Application.add_init(function() {
$create(Telerik.Web.UI.RadNumericTextBox, {"_enableOldBoxModel":false,"_focused":false,"_originalValue":45,"_postBackEventReferenceScript":"setTimeout(\"__doPostBack(\\\u0027ctl00$m$g_c2c9bd70_6add_41ce_811f_7a6842bf9330$ctl10$6cd603ba-6163-4442-b414-0171c5db5942_upper_12$inputBox\\\u0027,\\\u0027\\\u0027)\", 0)","_shouldResetWidthInPixels":true,"clientStateFieldID":"ctl00_m_g_c2c9bd70_6add_41ce_811f_7a6842bf9330_ctl10_6cd603ba-6163-4442-b414-0171c5db5942_upper_12_inputBox_ClientState","enabled":true,"incrementSettings":{InterceptArrowKeys:true,InterceptMouseWheel:true,Step:1},"numberFormat":{"DecimalDigits":0,"DecimalSeparator":".","CultureNativeDecimalSeparator":".","GroupSeparator":",","GroupSizes":3,"NegativePattern":"-n","NegativeSign":"-","PositivePattern":"n","AllowRounding":true,"KeepNotRoundedValue":false,"KeepTrailingZerosOnFocus":false},"styles":{HoveredStyle: ["width:32px;", "riTextBox riHover eingabe number"],InvalidStyle: ["width:32px;", "riTextBox riError eingabe number"],DisabledStyle: ["width:32px;", "riTextBox riDisabled eingabe number"],FocusedStyle: ["width:32px;", "riTextBox riFocused eingabe number"],EmptyMessageStyle: ["width:32px;", "riTextBox riEmpty eingabe number"],ReadOnlyStyle: ["width:32px;", "riTextBox riRead eingabe number"],EnabledStyle: ["width:32px;", "riTextBox riEnabled eingabe number"],NegativeStyle: ["width:32px;", "riTextBox riNegative eingabe number"]}}, null, null, $get("ctl00_m_g_c2c9bd70_6add_41ce_811f_7a6842bf9330_ctl10_6cd603ba-6163-4442-b414-0171c5db5942_upper_12_inputBox"));
});

problem with custom fonts in the drop down.
My Radeditor component contains the following.
<FontNames>
<telerik:EditorFont Value="SomeFont1" />
<telerik:EditorFont Value="SomeFont2" />
<telerik:EditorFont Value="SomeFont3" />
</FontNames>
However, no matter what font is chosen the text in the dropdown box says Arial. If I examine the content it is updating to the selected font. (ie: <FONT face="SomeFont1">dfsdfasdfasdfasdf</FONT>) Only the text rendered in the dropdown says Arial.
Note, that the fonts being chosen do not actually exist on the computer. The content is being captured for an offline printing application, where the user chooses the font(s) the content will print in.
Does the editor require the chosen font to exist on the client computer?
Since, I dont what the user to think that the content will print in Arial. Is there a way to make the box say "Default" instead of "Arial"?

