My question is how can I link 'Radio Button' with 'Select Output 5'. The idea is to select output of the agents based on corresponding radio button. Click to Image of the simple problem
Thank you so much in advance.
Best Regards,
JB
the radio button has a getValue() method so you can use that on your selectOutput using conditions
radio.getValue()==0
radio.getValue()==1
etc...
Related
I am new and i do have a question regarding gravity forms and elementor.
I have created and designed a very nice popup window as template with elementor and I would like to use it with gravity submission form.
Basically it should be displayed as a popup window when submit button is triggered.
does anyone have an idea how I can do it?
thank you so much in advance
Did you try to use the Dynamic option in a link? It will display a list of options and if i'm correct it will give you an option to choose Elementor Pop-up!
Good Morning,
I an starting working with SAPUI5.
I want to hide a go button of a FilterBar (sap.ui.comp.filterbar.FilterBar)
I can use the method "hideGoButton()"?
How can I use it?
Thank you!
There is a property on the FilterBar control called showGoOnFB.
<fb:FilterBar xmlns:fb="sap.ui.comp.filterbar" showGoOnFB="false">
If you want to hide the Go button dynamically or by using some sort of toggle event, like I assume you want to do based on your mention of hideGoButton() above, you can use an event handler similar to the one in the UI5 Explored sample:
FilterBar samples
Check the code for sample 2. There is a function in there to hide the 'Filter' selector.
I have a SWT Button, it does not contains text, just an image. I searched for methods, but I can't find a way to press it.
If you know the index -0-based order of the button in all the available buttons in this context- of the button, you can try bot.button(index). But as UI can change that, I strongly recommend the solution proposed by #alt3.
Instantiate the button with an id:
yourButton.setData("org.eclipse.swtbot.widget.key", "yourButtonId");
Then, call the following method through the bot:
bot.buttonWithId("yourButtonId").click();
I am working on a page controller application. My logic involves placing custom radio buttons at the bottom of one page.
I would like to create a listener on the radio button when the user swipes the page to move to the next. I am not aware exactly how to do this. I have attached an image to relay my idea.
Any thoughts would be greatly appreciated.
Thanks in advance.
See this example
You have to just go through this example.Its has different type of TabIndicator.So read it and play with it. Hope it help you
I am trying to develop a quiz application using LWUIT resource editor and am having great difficulty.
I have created two Forms 'GUI1' and 'GUI2' .
GUI1 displays the following:
A question(in the form of a TextField)
5 RadioButtons belonging to the same group
A Button which says 'OK'
GUI2 displays the following:
A TextField
A Button to go back to GUI1
Now the problem is:
Initially GUI1 is displayed. When the user chooses a RadioButton , I wish to know which RadioButton was selected. If that RadioButton was indeed the correct answer, then when the user clicks on the 'OK' Button on GUI1, I wish to display the text 'correct' in the TextField on GUI2 and then display the GUI2.
If the user chose the wrong answer, then I wish to display the text "Wrong" in the TextField on GUI2 and then display the GUI2.
How can this be done with resource editor? I am very foxed. Please help.
I wish to refer to the TextField on GUI2 when I am currently on GUI1. How can this be done with resource editor? Writing a manual code for all this would be very time consuming.
Ok I will try to explain the best I can.
When you design the first Form GUI1 the five RadioButtons must be in the same group. I don't know how to do that in the resource editor (I think there is a field called ButtonGroup in the RadioButton, but I can't remeber). What I would do is take the five RadioButton by code in the before method of GUI1 and add them to a ButtonGroup element.
With ButtonGroup you can know which element is selected using ButtonGroup.setSelectedIndex(). When you press the Button take this value and act as appropriate to the situation.
If you don't understand anything please tell me and I will try to help you.
Is not a hard thing to do. There must be a way to do it with the Resoruce editor but at the moment I donĀ“t know how.
As Shai mentioned, the best thing to do is to use listeners to set the "state" of the buttons on clicking them and when you move to the next form you just retrieve the state of the previous text field.
Manual code may actually be faster for you, do most of the UI in the resource editor and transfer to a form that is written manually. That way you have full control over your objects and transfer back into the GUI builder form when needed.