Hi all!
I have an UltraPanel containing two UltraListView and my situation is the following:
If I select a item from the first list and then I select another one from the second list the first one selected in the first list lose the highlighted appearance.
Is there any method or somebody to do for avoiding the lose of the highlighted appearance?
Thanks in advance.
Hi,
What you want here is the HideSelection property on the ItemSettings.
this.ultraListView1.ItemSettings.HideSelection = false;
This is basically the same as the HideSelection property on the inbox ListView control.