Get actual weblistbox row height

Where can I find a list of eventNames? Maybe that’s what I’m missing.

… anyone know if the guys are working on drag and drop between weblistboxes so I don’t waste my time trying to create it?

They never tell if they are working on such a specific feature, and even if they did, they never give any release date.

For your issue if you still need rowheight, something like that should work (top of my head)

dim js as string js = js + "var rows = document.getElementById('"+listbox.ControlID+"__rows') ;" js = js + "window.location.replace('#' + rows.getElementsByTagName('tr')["+rowNumber""].offsetHeight) ;" ListBox1.ExecuteJavaScript(js)

Then you catch the value in Session.HashTagChanged event.

Or better yet you use WebSDK TriggerServerEvent to send back the value.

I’ve been trying to figure out TriggerServerEvent, but I can’t find a list of the event names

You make the name you want, as well as the number of arguments.

If you can’t figure this out, though, simply stay with HashTagChanged. Before WebSDK that is what we used.