How to de-select in a list box
Dear friends, maybe I'm blindfolded.
I fill an EditText field with selections from ListBoxes. Whether I do this by a callback function onClick or onDoubleClick, the selection is persistent:

Relevant script parts:
wPalR.g1b.lstChars.onDoubleClick = function () {
KLD_F.InsertEditItem (wPalR.g1b.lstChars, KLD_F.aLstChars, wPalR.g3.eReg);
};
KLD_F.InsertEditItem = function (oList, asItems, oEdit) {
var index, iTab, strLen, sItem;
index = oList.selection.valueOf();
iTab = asItems[index].indexOf("¦");
sItem = asItems[index].substring (iTab+1);
oEdit.textselection = sItem;
} // --- end InsertEditItem

