Should this post be in this forum section? Is this just about the List Control?
Based on your use of a TextBox Control... then... where ever you're processing the List selection... e.g. onClick, onSelect, then add this code...
Code:
{dialog.Object}.setValue('listCnt',this.selection.length);
"this" is the List object when processing stuff within the List Control.
.selection is a property of the List Control... which is an array of selected rows.
Get the length of the array and perform a .setValue to the TextBox control.
Bookmarks