1
在我的其他方法(數據,文本等)中,setItem方法可以正常工作以顯示對樹項目所做的更改。但是,更改項目圖標後調用setItem似乎沒有任何作用。更新樹項目以便出現新圖標的最佳方法是什麼?Axapta:在圖像更改後更新FormTreeControl
感謝
public void modified()
{
FormTreeItem workingItem;
;
super();
//find the current item
workingItem = FormTreeControl.getItem(FormTreeControl.getSelection());
//update the value
workingItem.Image(1);
//update the item in the list
FormTreeControl.setItem(workingItem);
}