BarryW Active Member Licensed User Longtime User Jan 24, 2016 #1 Is it possible to create custom table in b4j like putting a textbox or spinner in a row... Tnx...
Erel B4X founder Staff member Licensed User Longtime User Jan 24, 2016 #2 Yes. You can put any nodes you like in the TableView. B4X: For i = 1 To 10 Dim tf As TextField tf.Initialize("") TableView1.Items.Add(Array(tf, "Text", 5)) Next Upvote 0
Yes. You can put any nodes you like in the TableView. B4X: For i = 1 To 10 Dim tf As TextField tf.Initialize("") TableView1.Items.Add(Array(tf, "Text", 5)) Next
BarryW Active Member Licensed User Longtime User Jan 24, 2016 #3 Can this table hold up to 500,000 to million rows with 40 columns? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Jan 24, 2016 #4 You can try it. It is very simple. My guess that it will be too slow. Why do you want to show 500k records? It will not be useful to anyone. Upvote 0
You can try it. It is very simple. My guess that it will be too slow. Why do you want to show 500k records? It will not be useful to anyone.