B Bob Spielen Active Member Licensed User Jan 28, 2021 #1 Is it possible to add TextFlow to dialog.options optionslist. Would apreciate any help, thanks in advance..
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 Jan 28, 2021 #2 What is Dialog.options? Use B4XDialog. You can add any interface you like. Upvote 0
B Bob Spielen Active Member Licensed User Jan 28, 2021 #3 Erel said: What is Dialog.options? Use B4XDialog. You can add any interface you like. Click to expand... Dialogs options as B4XListTemplate Im trying to add in the options.list a Dim p As Pane = tf.CreateTextFlow ....... Upvote 0
Erel said: What is Dialog.options? Use B4XDialog. You can add any interface you like. Click to expand... Dialogs options as B4XListTemplate Im trying to add in the options.list a Dim p As Pane = tf.CreateTextFlow .......
Erel B4X founder Staff member Licensed User Longtime User Jan 28, 2021 #4 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
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)
B Bob Spielen Active Member Licensed User Jan 28, 2021 #5 Dialogs options as B4XListTemplate Im trying to add in the options.list a Dim p As Pane = tf.CreateTextFlow ....... Upvote 0
Dialogs options as B4XListTemplate Im trying to add in the options.list a Dim p As Pane = tf.CreateTextFlow .......
Erel B4X founder Staff member Licensed User Longtime User Jan 28, 2021 #6 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. Upvote 0
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.