I'm having a very intermittent problem with two list boxes with "allow transfer" enabled. The first time the page loads, sometimes, the left side list box with all the selectable items overflows the bottom of the container and the right one gets an extra line before the title and before the list items. If I move an item in either direction the page corrects itself and displays correctly. Then after that, I can log out of the app, open it in a new browser window and no problems. But the first time in, particularly after recycling IIS I have this problem. See attached screenshots and HTML below. The postback is for sorting.
Thanks
Rodney
<
asp:UpdatePanel
runat
=
"server"
ID
=
"updPnlRoles"
>
<
ContentTemplate
>
<
telerik:RadListBox
runat
=
"server"
ID
=
"rlbxAvailableRoles"
Height
=
"210"
Width
=
"230"
AllowTransfer
=
"true"
TransferToID
=
"rlbxSelectedRoles"
ButtonSettings-AreaWidth
=
"35px"
ButtonSettings-ShowTransferAll
=
"false"
AllowTransferOnDoubleClick
=
"true"
SelectionMode
=
"Multiple"
EnableDragAndDrop
=
"true"
AutoPostBackOnTransfer
=
"true"
>
<
HeaderTemplate
>
<
h3
>Available Roles</
h3
>
</
HeaderTemplate
>
</
telerik:RadListBox
>
<
telerik:RadListBox
runat
=
"server"
ID
=
"rlbxSelectedRoles"
Height
=
"210"
Width
=
"190"
EmptyMessage
=
"Select at least one role"
AllowTransferOnDoubleClick
=
"true"
SelectionMode
=
"Multiple"
EnableDragAndDrop
=
"true"
AutoPostBackOnTransfer
=
"true"
>
<
HeaderTemplate
>
<
h3
>Selected Roles</
h3
>
</
HeaderTemplate
>
</
telerik:RadListBox
>
<
asp:CustomValidator
ID
=
"cvSelectedRoles"
runat
=
"server"
ErrorMessage
=
"You must have at least 1 role"
ClientValidationFunction
=
"cvSelectedRoleVal"
ControlToValidate
=
"rlbxSelectedRoles"
ValidateEmptyText
=
"true"
CssClass
=
"validator"
ValidationGroup
=
"userValidations"
>
</
asp:CustomValidator
>
</
ContentTemplate
>
</
asp:UpdatePanel
>