The question is about the output of this code:
Telerik.WinForms.Documents.FormatProviders.Html.HtmlFormatProvider fmt = new Telerik.WinForms.Documents.FormatProviders.Html.HtmlFormatProvider();fmt.ExportSettings.StylesExportMode = Telerik.WinForms.Documents.FormatProviders.Html.StylesExportMode.Inline;RadDocument rad = fmt.Import("The following word is <i>italic</i>.");string html = fmt.Export(rad);The HTML output contains:
<span style="font-family: 'Times New Roman';font-style: Italic;font-size: 16px;">italic</span>It seems as though some HTML parsers don't regard "font-style: Italic" as a valid font-style. However, if I replace it with "font-style: italic" it works just fine. The client in question is GMail's HTML email viewer, but I'm sure there are others.
The only standard I can find related to this is the SVG 1.1 standard which states:
Keyword values, such as italic in font-style="italic", are also case-sensitive and must be specified using the exact case used in the specification which defines the given keyword.Obviously the DOCTYPE is xhtml, not an SVG file, but the premise that certain standards expect this particular word to be lowercase lends to the fact that in certain situations "Italic" vs. "italic" does matter.
For the time being I'll just manually replace this substring in all of my HTML documents, but it would be nice if the RadDocument / HtmlFormatProvider guys could implement a permanent fix for this.

Hello Support.
May you please tell me how I can disable add new, edit, delete items both in text view and graphical view of GanttView?
Thanks & Regards,
Thuy

Hi, I would like to change the behavior of a RadDock far-right-hand-side close ('x') button (on the top right of the DocumentTabStrip) to close all of the opened tab windows instead of just the current window. On the screen shot, it's the red 'x' on the top right that I'm talking about.
How would I do this?
-Lou
Hello,
for my application I created with the Visual Style Builder own theme, which I put by this code throughout the application:
ThemeResolutionService.LoadPackageFile("MyTheme.tssp");ThemeResolutionService.ApplicationThemeName = "MyTheme";Thank you.
there are white space on the right side, how i can hide or remove it ??
second issue am sure the ribbon bar have hide button not minimize but i can't find it any one here can help me ??

To who may concern,
Im using ChartView to get the graph that Im sendind as an image (the attachment included), but until now I just cannt. As you can see in the image, I also put a data sample, thats the way I have my info, as consequence the resultant graphic will be a stacked and clustered (or grouped Idntknow). Can this graphic be done with Chartview? Also, can you help me with this?
I'd really really appreciate any help that u can give me.
Thx in advanced.
Miguel RodrÃguez.

In my grid with databinding, I'd like to show the object properties in the first column, and the values in the second column. If the GridView isn't capable, are any other Telerik controls capable of doing this w/ binding.
See attached for better description.
Hi, how do I prevent hot-tracking and highlighting of a selected cell/row with the RadListView?
I need to do this with ListViews having a ViewType of both IconView and DetailsView.
I found the following post and tried the suggestion (with both ViewTypes) but it did not work for me:
http://www.telerik.com/forums/remove-selected-and-hover-states
The code I was using was (following the above post):
void radListView1_SelectedItemChanged(object sender, Telerik.WinControls.UI.ListViewItemEventArgs e)
{
radListView1.CurrentItem = null;
radListView1.SelectedItem = null;
}
Thanks,
-Lou
Hi,
I have a certain docked window that is always opened when my application is started (and cannot be closed by the user) and I'd like to always keep this window at the left-most tab position in the document container. Any new documents should open to the right of this document. How would I do this?
Thanks,
-Lou
