Hello , everyone, I've got a strange issue that just popped up after I upgraded to v.2012.2.607.40.
I've got a RadWindow that has VisibleOnPageLoad set to false. This RadWindow contains a few asp drop down lists, RadComboBoxes, and a RadButton. One of the drop down lists contains an item with the text and value set to "Trial". As long as this item is there, the RadWindow will partially render on page load (If I remove the Item, the window is hidden, as expected). If I change the text and value to anything else, the RadWindow is hidden as expected. I have even tried replacing the drop down list with a RadComboBox with an item that has the same "Trial" text/value and I see the same behavior. I've even gone so far as to remove all other controls from the RadWindow to narrow it down to this, so if I have this markup, the RadWindow is shown on page load even if VisibleOnPageLoad is false:
However, if I change the text of the list item to anything else, the VisibleOnPageLoad setting is evaluated correctly and the RadWindow is hidden.
Is this a bug, or can someone Identify something I'm doing incorrectly?
Thanks!
I've got a RadWindow that has VisibleOnPageLoad set to false. This RadWindow contains a few asp drop down lists, RadComboBoxes, and a RadButton. One of the drop down lists contains an item with the text and value set to "Trial". As long as this item is there, the RadWindow will partially render on page load (If I remove the Item, the window is hidden, as expected). If I change the text and value to anything else, the RadWindow is hidden as expected. I have even tried replacing the drop down list with a RadComboBox with an item that has the same "Trial" text/value and I see the same behavior. I've even gone so far as to remove all other controls from the RadWindow to narrow it down to this, so if I have this markup, the RadWindow is shown on page load even if VisibleOnPageLoad is false:
<
telerik:RadWindow
ID
=
"radWindowNew"
runat
=
"server"
Modal
=
"true"
Behaviors
=
"Close"
Skin
=
"Windows7"
Width
=
"400"
Height
=
"350px"
>
<
ContentTemplate
>
<
table
border
=
"0"
cellpadding
=
"2"
width
=
"100%"
>
<
tr
>
<
td
>
<
asp:DropDownList
runat
=
"server"
ID
=
"ddlLeadSource"
>
<
asp:ListItem
>Trial</
asp:ListItem
>
</
asp:DropDownList
>
</
td
>
</
tr
>
</
table
>
</
ContentTemplate
>
</
telerik:RadWindow
>
However, if I change the text of the list item to anything else, the VisibleOnPageLoad setting is evaluated correctly and the RadWindow is hidden.
Is this a bug, or can someone Identify something I'm doing incorrectly?
Thanks!