我已经成功地将项目从一个列表移动到另一个列表,但是有一个显示问题,当我将项目从 移回 时LIST2
,LIST1
该项目位于末尾,所以我向下滚动以查看它是否存在。
如何再次使listitems
InLIST1
排序或如何将其添加回其原始位置?
我已经在.cs
文件中编写了代码,因此不需要jquery
或javascript
作为选项。这是我在列表之间移动项目的代码:
if (SelectedInvestorsLst.SelectedIndex > -1)
{
string _value = SelectedInvestorsLst.SelectedItem.Value;
string _text = SelectedInvestorsLst.SelectedItem.Text;
ListItem item = new ListItem();
item.Text = _text;
item.Value = _value;
InstitutionLst.Items.Add(item);
SelectedInvestorsLst.Items.Remove(item);
}