Hello,
I am using radcontrols for asp.net ajax Q2 2011. I place two RadListBoxes within a RadPanelBar. The transfer buttons get enabled once in a while and only when the user refreshes the cache -- it works consistently in Firefox but not in IE.
Please help. Here's the code.
I am using radcontrols for asp.net ajax Q2 2011. I place two RadListBoxes within a RadPanelBar. The transfer buttons get enabled once in a while and only when the user refreshes the cache -- it works consistently in Firefox but not in IE.
Please help. Here's the code.
<
radTS:RadPanelItem
runat
=
"server"
Text
=
"Groups"
>
<
Items
>
<
radTS:RadPanelItem
runat
=
"server"
Value
=
"GroupsTemplatedItem"
>
<
ItemTemplate
>
<!-- Groups -->
<
div
class
=
"prop_item_wrap"
>
<
table
ID
=
"tblgroups"
class
=
"tbl_groups"
>
<
tr
>
<
td
class
=
"directive"
colspan
=
"4"
>
Select fields from the Available list in the order you want them to be grouped.
</
td
>
</
tr
>
<
tr
>
<
td
>
Available Fields:</
td
>
<
td
>
</
td
>
<
td
>
Selected Fields:</
td
>
<
td
>
</
td
>
</
tr
>
<
tr
>
<
td
colspan
=
"4"
>
<
asp:Panel
ID
=
"panelGroups"
runat
=
"server"
>
<
radTS:RadListBox
ID
=
"RadListBoxGroupAvailable"
runat
=
"server"
Width
=
"200px"
Height
=
"200px"
SelectionMode
=
"Multiple"
AllowTransfer
=
"true"
TransferToID
=
"RadListBoxGroupSelected"
TransferMode
=
"Move"
AllowTransferOnDoubleClick
=
"true"
>
</
radTS:RadListBox
>
<
radTS:RadListBox
ID
=
"RadListBoxGroupSelected"
runat
=
"server"
Width
=
"200px"
Height
=
"200px"
SelectionMode
=
"Multiple"
AllowReorder
=
"true"
>
</
radTS:RadListBox
>
</
asp:Panel
>
</
td
>
</
tr
>
</
table
>
</
div
>
</
ItemTemplate
>
</
radTS:RadPanelItem
>
</
Items
>
</
radTS:RadPanelItem
>