<
telerik:GridBoundColumn UniqueName="searchString" AllowSorting="false" DataField="searchString" HeaderText="Search String" />
The binding text is HTML text. I would like to see the HTML text in both normal view mode and edit view. And when I insert to the database, I would also like to insert the exact HTML that is in the text box.
I just started seeing errors with IE8 that will not let me insert with HTML characters in the text box even though validateRequest is set to false.
How do I accomplish this?
--Jeff
<telerik:RadScheduler ID="ctlScheduler" runat="server"
AllowDelete="False"
AllowEdit="False"
AllowInsert="False"
BackColor="White"
ColumnWidth="100"
DataKeyField="ID"
DataSourceID="ctlObjectSource"
DataSubjectField="Description"
DataStartField="StartTime"
DataEndField="EndTime"
DayStartTime="00:00:00"
DayEndTime="23:59:59"
MinutesPerRow="720"
MonthView-AdaptiveRowHeight="false"
MonthView-MinimumRowHeight="2"
MonthView-ShowDateHeaders="true"
MonthView-ReadOnly="true"
MonthView-VisibleAppointmentsPerDay="2"
ReadOnly="True"
RowHeight="50"
SelectedView="MonthView"
ShowAllDayRow="False"
ShowHeader="false"
ShowViewTabs="False"
TimeZoneOffset="05:00:00" >
<MonthView ReadOnly="True" />
</telerik:RadScheduler>
<telerik:RadTextBox ID="RadTextBox1" runat="server" Text="Test" Enabled="false">
<DisabledStyle CssClass="MyInvalidTextBox" ></DisabledStyle>
</telerik:RadTextBox>
and the following style
html body form .RadInput .MyInvalidTextBox
{
border-color: #f33;
background: none #ff9;
color: Black;
}

| Here is <font face="AZBY">my link</font> |
