I have a #PRIM_LIST. This code is not executing when I have an entry selected. Is there a different way to get selected entries on VL-WEB?
selectlist #list
if ((#list.CurrentItem.selected))
*Load Popup
endIf
endSelect
Screen shot
VL-WEB #PRIM_LIST Selected?
Re: VL-WEB #PRIM_LIST Selected?
Art,
did you try:
B.
did you try:
Code: Select all
Evtroutine Handling(#List.ItemSelected) Item(#Item)
* Call Mthroutine to Load Popup
Endroutine
Re: VL-WEB #PRIM_LIST Selected?
I could but i want the users to be able to select multiple lines
Art Tostaine