B4J Question TableView Message

BeneBarros

Active Member
Licensed User
Longtime User
Is there any way to remove this message from the TableView object ??
 

Attachments

  • TV.jpg
    TV.jpg
    93 KB · Views: 179

Daestrum

Expert
Licensed User
Longtime User
try this snippet
B4X:
... 
Dim jo As JavaObject = TableView1 ' the tableview to remove message on
Dim tx As Label
tx.Initialize("")
tx.Text =""
jo.RunMethod("setPlaceholder",Array(tx))
...
 
Upvote 0

BeneBarros

Active Member
Licensed User
Longtime User
try this snippet
B4X:
...
Dim jo As JavaObject = TableView1 ' the tableview to remove message on
Dim tx As Label
tx.Initialize("")
tx.Text =""
jo.RunMethod("setPlaceholder",Array(tx))
...
Excellent !! Thank you .
It works perfect.
 
Upvote 0
Top