All,
I ran across this control as I was digging through the fabulous and voluminous documenation of the Telerik controls and am trying to get this to work on the asp:DropDownList control because we are using RadControls on our new development and it'll take time (and budget) to go back and change the older pages over.
What seems awesome is that it appears that one could use the RadFormDecorator and at least trick the user into thinking all the controls are the same.
But, what I'm running into is that the asp:DropDownList doesn't seem to be decorated, but if I use the HTML to create a drop down list (SELECT), it works.
I also noticed that the RadFormDecorator wasn't applying the designated theme against RadControls either...
Is there something I'm missing?
EDITED TO ADD:
I forgot to mention that the application ultimately will only be run in IE8/9, but it's behaving the same way in Firefox
Thanks,
Ray
Here is my code
I ran across this control as I was digging through the fabulous and voluminous documenation of the Telerik controls and am trying to get this to work on the asp:DropDownList control because we are using RadControls on our new development and it'll take time (and budget) to go back and change the older pages over.
What seems awesome is that it appears that one could use the RadFormDecorator and at least trick the user into thinking all the controls are the same.
But, what I'm running into is that the asp:DropDownList doesn't seem to be decorated, but if I use the HTML to create a drop down list (SELECT), it works.
I also noticed that the RadFormDecorator wasn't applying the designated theme against RadControls either...
Is there something I'm missing?
EDITED TO ADD:
I forgot to mention that the application ultimately will only be run in IE8/9, but it's behaving the same way in Firefox
Thanks,
Ray
Here is my code
<%@ Page Title="" Language="C#" AutoEventWireup="true" CodeBehind="ActivityProperties.aspx.cs" Inherits="BAC.IRIS.UI.Web.ActivityProperties" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
id
=
"Head1"
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
style
=
"padding-right: 0px; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px;"
>
<
form
id
=
"Telerik"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
>
</
telerik:RadScriptManager
>
<
telerik:RadFormDecorator
ID
=
"RadFormDecorator1"
runat
=
"server"
DecoratedControls
=
"All"
EnableRoundedCorners
=
"true"
Skin
=
"Black"
/>
<
h4
>Test</
h4
>
<
table
id
=
"LeftColumn"
cellpadding
=
"3"
cellspacing
=
"0"
width
=
"100%"
>
<
tr
>
<
td
align
=
"left"
valign
=
"top"
>
<
asp:Label
ID
=
"lblActivityIDDesc"
runat
=
"server"
Text
=
"Activity ID: "
/>
</
td
>
<
td
>
</
td
>
<
td
align
=
"left"
>
<
telerik:RadTextBox
ID
=
"radActivityID"
runat
=
"server"
ReadOnly
=
"true"
/>
</
td
>
</
tr
>
<
tr
>
<
td
align
=
"left"
valign
=
"top"
>
<
asp:Label
ID
=
"Label1"
runat
=
"server"
Text
=
"Activity Type: "
/>
<
asp:Label
ID
=
"Label2"
runat
=
"server"
Text
=
"*"
/>
</
td
>
<
td
>
</
td
>
<
td
align
=
"left"
valign
=
"top"
>
<
asp:DropDownList
ID
=
"ddlActivityType"
runat
=
"server"
>
<
asp:ListItem
Text
=
"Test Item"
Value
=
"1"
/>
</
asp:DropDownList
>
</
td
>
</
tr
>
<
tr
>
<
td
align
=
"left"
valign
=
"top"
>
<
asp:Label
ID
=
"Label3"
runat
=
"server"
Text
=
"Activity Type: "
/>
<
asp:Label
ID
=
"Label4"
runat
=
"server"
Text
=
"*"
/>
</
td
>
<
td
>
</
td
>
<
td
align
=
"left"
valign
=
"top"
>
<
select
id
=
"select1"
name
=
"ddlTest"
>
<
option
value
=
"1"
>Test Item</
option
></
select
>
</
td
>
</
tr
>
</
table
>
</
form
>
</
body
>
</
html
>