B4J Question TextFlow to Dialog.options

Bob Spielen

Active Member
Licensed User
Is it possible to add TextFlow to dialog.options optionslist.
Would apreciate any help, thanks in advance..
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
I don't see any way that we could have guessed this.

You can show the dialog and then modify ListTemplate.CustomListView. Go over the items, hide clv.GetPanel(x).GetView(0) and add the text flow panes.

Show the dialog like this:
B4X:
Dim rs As Object = Dialog.ShowTempalte(...)

'modify CLV
Wait For (rs) Complete (Result As Int)
 
Upvote 0

Bob Spielen

Active Member
Licensed User
Dialogs options as B4XListTemplate Im trying to add in the options.list a Dim p As Pane = tf.CreateTextFlow .......
1611846521290.png
 
Upvote 0
Top