Hi,
I'm using two RadListBox to transfer items to a "preferred" group and reorder items
<telerik:RadListBox runat="server" ID="favList" Width="250px" Height="146px" AllowTransferOnDoubleClick="true"
AllowReorder="true" AllowTransfer="true" TransferToID="notFavList"
DataSourceID="favSrc" DataKeyField="Id" DataValueField="Id" DataTextField="Title"
OnClientTransferring="onClientTransferring">
<ItemTemplate><asp:Literal runat="server" Text='<%# Eval("Title") %>' Mode="Encode" /></ItemTemplate>
</telerik:RadListBox>
...
<telerik:RadListBox runat="server" ID="notFavList" Width="250px"
DataSourceID="notFavSrc" DataKeyField="Id" DataValueField="Id" DataTextField="Title">
<ItemTemplate><asp:Literal runat="server" Text='<%# Eval("Title") %>' Mode="Encode" /></ItemTemplate>
</telerik:RadListBox>
I can reorder items of my "favList", but when I transfer an item from "notFavList" to "favList" and I try to reorder to move up the item I get the following error when the item arrives on top position:
Microsoft JScript runtime error: Object required
I find the issue at this line (p.documentElement is null):
var d=function(p){return p.nodeType===9&&p.documentElement.nodeName!=="HTML"||!!p.ownerDocument&&d(p.ownerDocument);
Do you know any solution to fix or prevent this issue ?
Thanks in advance
Pedro
I'm using two RadListBox to transfer items to a "preferred" group and reorder items
<telerik:RadListBox runat="server" ID="favList" Width="250px" Height="146px" AllowTransferOnDoubleClick="true"
AllowReorder="true" AllowTransfer="true" TransferToID="notFavList"
DataSourceID="favSrc" DataKeyField="Id" DataValueField="Id" DataTextField="Title"
OnClientTransferring="onClientTransferring">
<ItemTemplate><asp:Literal runat="server" Text='<%# Eval("Title") %>' Mode="Encode" /></ItemTemplate>
</telerik:RadListBox>
...
<telerik:RadListBox runat="server" ID="notFavList" Width="250px"
DataSourceID="notFavSrc" DataKeyField="Id" DataValueField="Id" DataTextField="Title">
<ItemTemplate><asp:Literal runat="server" Text='<%# Eval("Title") %>' Mode="Encode" /></ItemTemplate>
</telerik:RadListBox>
I can reorder items of my "favList", but when I transfer an item from "notFavList" to "favList" and I try to reorder to move up the item I get the following error when the item arrives on top position:
Microsoft JScript runtime error: Object required
I find the issue at this line (p.documentElement is null):
var d=function(p){return p.nodeType===9&&p.documentElement.nodeName!=="HTML"||!!p.ownerDocument&&d(p.ownerDocument);
Do you know any solution to fix or prevent this issue ?
Thanks in advance
Pedro