In the RadEditor for ASP.NET there are Disable Filters that can be applied like the following:
RadEditor1.DisableFilter(
EditorFilters.ConvertFontToSpan);
RadEditor1.DisableFilter(
EditorFilters.ConvertToXhtml);
RadEditor1.DisableFilter(
EditorFilters.FixUlBoldItalic);
Are there similar filters that can be applied to RadMarkupDialog to keep it from converting font to span, Bold, Italic and Underline to style, etc?
Hi
I have Telerik Q3 2010. I used radDatetimePicker in my form but it does not work.
when I click any date in datetimepicker it does not show date in that.
I used this code in main() function of my program.cs file to have persian calander.
Thread.CurrentThread.CurrentCulture =
new
System.Globalization.CultureInfo(
"fa-IR"
);
Thread.CurrentThread.CurrentUICulture = Thread.CurrentThread.CurrentCulture;
when I delete this code and set the culture of radDatetimePicker to fa-IR, it displays an error (I attached the picture of that error)
how can I solve this problem?
thanks in advance
The designer cannot process the code at line 56: this.panel1.BackgroundImage = global::Telerik.Examples.WinControls.Properties.Resources.brushedMetal; The code within the method 'InitializeComponent' is generated by the designer and should not be manually modified. Please remove any changes and try opening the designer again.
Hide Edit |
|
at Microsoft.VisualStudio.Design.Serialization.CodeDom.XML.CodeDomXmlProcessor.CreateQuoteExpression(XmlElementData xmlElement) at Microsoft.VisualStudio.Design.Serialization.CodeDom.XML.CodeDomXmlProcessor.XmlElementData.get_CodeDomElement() at Microsoft.VisualStudio.Design.Serialization.CodeDom.XML.CodeDomXmlProcessor.EndElement(String prefix, String name, String urn) at Microsoft.VisualStudio.Design.Serialization.CodeDom.XML.CodeDomXmlProcessor.Parse(XmlReader reader) at Microsoft.VisualStudio.Design.Serialization.CodeDom.XML.CodeDomXmlProcessor.ParseXml(String xmlStream, CodeStatementCollection statementCollection, String fileName, String methodName) at Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomParser.OnMethodPopulateStatements(Object sender, EventArgs e) at System.CodeDom.CodeMemberMethod.get_Statements() at System.ComponentModel.Design.Serialization.TypeCodeDomSerializer.Deserialize(IDesignerSerializationManager manager, CodeTypeDeclaration declaration) at System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager manager) at Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager serializationManager) at Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.DeferredLoadHandler.Microsoft.VisualStudio.TextManager.Interop.IVsTextBufferDataEvents.OnLoadCompleted(Int32 fReload) |
Private
Sub
RadGridView1_CellFormatting(
ByVal
sender
As
System.
Object
,
ByVal
e
As
Telerik.WinControls.UI.CellFormattingEventArgs)
Handles
RadGridView1.CellFormatting
Dim
equationFont
As
New
Font(
"Cambria"
, 9, FontStyle.Bold
Or
FontStyle.Italic)
If
e.Row.DataBoundItem.Row(
"EQUATION"
) =
"Y"
Then
e.CellElement.Font = equationFont
If
gbUseColorCoding
Then
' global boolean variable for users to disable colors
e.CellElement.DrawFill =
True
e.CellElement.NumberOfColors = 1
e.CellElement.BackColor = Color.PaleGoldenrod
Else
e.CellElement.ResetValue(LightVisualElement.DrawFillProperty)
e.CellElement.ResetValue(LightVisualElement.NumberOfColorsProperty)
e.CellElement.ResetValue(LightVisualElement.BackColorProperty)
End
If
Else
e.CellElement.ResetValue(LightVisualElement.FontProperty)
e.CellElement.ResetValue(LightVisualElement.DrawFillProperty)
e.CellElement.ResetValue(LightVisualElement.NumberOfColorsProperty)
e.CellElement.ResetValue(LightVisualElement.BackColorProperty)
End
If
End
Sub
Hi,
I have seen variations of this question asked on several different posts, but either the fix has either been irrelevant to my particular situation or the question has gone unanswered. I have created a simplified example that you can run on your own computer, so as to easily demonstrate my problem.
I have a simple class "dog" which contains a property "Breed" of enum type "DogBreeds". I wish to display this value in a GridView combo box, but using more user-friendly text than the enum values.
This is my data class:
Public
Class
Dog
Private
dmName
As
String
Private
dmColour
As
String
Private
dmBreed
As
DogBreeds
Public
Sub
New
(
ByVal
_name
As
String
,
ByVal
_colour
As
String
,
ByVal
_breed
As
DogBreeds)
MyBase
.
New
()
dmName = _name
dmColour = _colour
dmBreed = _breed
End
Sub
Public
Property
Name()
As
String
Get
Return
dmName
End
Get
Set
(
ByVal
value
As
String
)
dmName = value
End
Set
End
Property
Public
Property
Colour()
As
String
Get
Return
dmColour
End
Get
Set
(
ByVal
value
As
String
)
dmColour = value
End
Set
End
Property
Public
Property
Breed()
As
DogBreeds
Get
Return
dmBreed
End
Get
Set
(
ByVal
value
As
DogBreeds)
dmBreed = value
End
Set
End
Property
End
Class
Public
Enum
DogBreeds
Staff
Husky
GShep
End
Enum
'Add some example data
dogs =
New
List(Of Dog)
dogs.Add(
New
Dog(
"Sacha"
,
"Brown"
, DogBreeds.Staff))
dogs.Add(
New
Dog(
"Nimbus"
,
"Black/Brown"
, DogBreeds.GShep))
dogs.Add(
New
Dog(
"Chinook"
,
"White"
, DogBreeds.Husky))
'Set the grid data source:
dgv.DataSource = dogs
'Create the data source for the combo column, comprosed of a column of the enum and a column of the
' "friendly" string represetion for that enum value
Dim
dtBreeds
As
New
DataTable
dtBreeds.Columns.Add(
"BreedEnum"
,
GetType
(DogBreeds))
dtBreeds.Columns.Add(
"BreedName"
,
GetType
(
String
))
dtBreeds.Rows.Add(DogBreeds.GShep,
"German Sheppard"
)
dtBreeds.Rows.Add(DogBreeds.Husky,
"Icelandic Husky"
)
dtBreeds.Rows.Add(DogBreeds.Staff,
"Staffordshire Bull Terrier"
)
'Set the column display and value members and the data source for the combo
With
DirectCast
(dgv.Columns(
"Breed"
), GridViewComboBoxColumn)
.DisplayMember =
"BreedName"
.ValueMember =
"BreedEnum"
.DataSource = dtBreeds
End
With
Run the form. All the combos are blank, but when you click on a combo cell, the correct value is displayed, but disappears again when focus is lost from the cell, so it looks like a display bug. I have successfully used this method on a DataGrid, so not sure why it does not work here.
Any help much appreciated
Shane