Hi guys.
I have a TableView and for every row I create an Object as array of strings and add it:
The problem is that sometimes the product description string is too long and even though the column is wide, the string doesn't show completely (ends in "...")
Is it possible to make it so that when the mouse hovers over the column the full string is shown? If not, is there any other way to make sure the user can see the whole string?
Thank you so much in advance.
I have a TableView and for every row I create an Object as array of strings and add it:
B4X:
row = Array As String(alias, TEST_ProductDescription, TEST_CustomerName)
Table_NewOrders.Items.Add(row)
The problem is that sometimes the product description string is too long and even though the column is wide, the string doesn't show completely (ends in "...")
Is it possible to make it so that when the mouse hovers over the column the full string is shown? If not, is there any other way to make sure the user can see the whole string?
Thank you so much in advance.