Copy text from WebListBox

Hi,

I have a weblistbox on my page: When displayed in my webbrowser it is not possible toEdit-> Copy text of the listbox.

Have I missed something vital?

WebListBox simply does not have EditCell, neither has it RowFromXY or ColumnFromXY which would enable placing a TextField over for editing.

To copy, use MouseDown+Selected and one of the JavaScript methods described here http://stackoverflow.com/questions/1539641/how-to-copy-text-to-the-clients-clipboard-using-jquery

Maybe you want to consider a third party tool such as this http://www.jeremieleroy.com/products/propertylistbox.php

to copy a text u may catch the crtl+c action and paste the content of the current cell(s) into the clipboard (with jquery afaik).

Thanks!