Hi
I am not able to reproduce the mentioned issue. The code below renders like this - http://screencast.com/t/CWbRhNDcM
The disabled textarea is properly decorated when placed inside and outside of the grid.
C#:
Regards,
Danail Vasilev
Telerik
,I am not able to reproduce the mentioned issue. The code below renders like this - http://screencast.com/t/CWbRhNDcM
The disabled textarea is properly decorated when placed inside and outside of the grid.
<
telerik:RadFormDecorator
ID
=
"RadFormDecorator1"
runat
=
"server"
DecoratedControls
=
"All"
Skin
=
"Web20"
/>
<
textarea
name
=
"aaa"
rows
=
"4"
cols
=
"60"
id
=
"dd"
runat
=
"server"
disabled
=
"disabled"
>sdfsdfsdfs sdfsdf sdf sdf 222</
textarea
>
<
telerik:RadGrid
ID
=
"RadGrid1"
runat
=
"server"
>
<
MasterTableView
>
<
Columns
>
<
telerik:GridEditCommandColumn
></
telerik:GridEditCommandColumn
>
</
Columns
>
<
EditFormSettings
EditFormType
=
"Template"
>
<
FormTemplate
>
<
textarea
name
=
"aaa"
rows
=
"4"
cols
=
"60"
id
=
"dd"
runat
=
"server"
disabled
=
"disabled"
>sdfsdfsdfs sdfsdf sdf sdf 222</
textarea
>
</
FormTemplate
>
</
EditFormSettings
>
</
MasterTableView
>
</
telerik:RadGrid
>
C#:
protected
void
Page_Load(
object
sender, EventArgs e)
{
RadGrid1.DataSource =
new
int
[] { 1, 2, 3 };
RadGrid1.DataBind();
}
Regards,
Danail Vasilev
Telerik
Explore the entire set of ASP.NET AJAX controls we offer here and browse the myriad online demos to learn more about the components and the features they incorporate.