CalendarPickerViewCellInitializeEventArgs.EncodeHtml Property
Gets or sets a value that specifies whether the cell display text keeps any of its values that are HTML as HTML, or instead, strips out the HTML markers.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Remarks
If the EncodeHtml property is set to true
, the CalendarPickerViewCellInitializeEventArgs.DisplayText argument property value that contains HTML code is parsed, so that any angle bracket (the characters < and >) of HTML tags is converted to specific symbols (< and >) when the calendar renders its value to the page. This allows the HTML code to be displayed on the page as text.
If this property is set to false
, the content of the CalendarPickerViewCellInitializeEventArgs.DisplayText argument property value that contains HTML tags is not specifically parsed, and is rendered as pure HTML markup. This allows the result of the HTML code to be displayed within the calendar.
Refer to the HTML Encoding topic for more information on DevExpress ASP.NET controls encoding.