All Questions
25 questions
0
votes
2
answers
2k
views
Conditional Dropdown Menus in Wix
First post on here and I'm not particularly technical so please bare with me! I am trying to create multiple conditional dropdowns in the Wix website builder so that the contents of each dropdown is ...
3
votes
1
answer
2k
views
Make Spring form:select searchable by two parameters
I have a drop-down menu (Product Type):
Generated by the Spring MVC code (Google MDL fluff removed)
<form:select path="productType" required="required">
<form:option value="" label="" /&...
0
votes
2
answers
211
views
I'm not able to open "All" drop down from Amazon.ca page through selenium web driver using Java
Repro steps:
Open amazon home page
see the "ALL" drop-down option on the left top of the page.
try to click on that (via Selenium WebDriver using Java)
Code:
new WebDriverWait(driver, 20).until(...
2
votes
1
answer
923
views
Primefaces autocomplete keep selected dropdown value
I have a Primefaces autocomplete box, and have the requirement to keep the value of the dropdown list on the selected value, for example I have a list with 20 elements and I select the 10 element.
If ...
0
votes
2
answers
862
views
How to pass selected dropdown value to url query string on the same jsp page
I have a jsp page say, xyz.jsp . I have a dropdown menu in the page which displays financial years. I want to pass the selected dropdown value to the URL query string.
This is the only method I tried ...
0
votes
1
answer
2k
views
3 select elements that change options based on the selected option in the first and second select
The title maybe a little confusing but here we go in details.
So i have 3 dropdown-lists. The options in the second 'select' element have to be unique, based on the selected option in the first '...
1
vote
1
answer
222
views
How to get data from a select box thats dynamically loading
I have a dropdown as in the pic below. Its having a "More..."option clicking which shall load the next ten data. On the next click of more, another 10 data will be loaded..similarly the whole list ...
0
votes
1
answer
49
views
How do i eliminate a value from dropdown if it is auto populated
My jsp dropdown list looks like
<select name="dropdown1"
name="authority_name">
<option value="DEFAULT_VALUE"> <c:out value="${user[1]}" /></option>...
0
votes
1
answer
133
views
Not able select month from dropdown in google sign up page using selenium
I am trying to select a month from the Google sign up page using Selenium.
Below is my code:
driver.get("https://accounts.google.com/SignUp");
driver.manage().timeouts().implicitlyWait(5, TimeUnit....
0
votes
1
answer
360
views
Javascript drop down menu and validate calendar picker
Ok I have a drop down menu that is dynamically generated by .jsp and populated with data fetched from database.2 dropdown list and 2 datepicker
The problem that I am having is with a JS validation, am ...
0
votes
1
answer
1k
views
Field addition based on drop down option selection in java
I have a dropdown list field in my server pages. I want to add text fields to the page depending on the option chosen in the drop down.
The java code where the fields are rendered :
protected void ...
0
votes
1
answer
771
views
How to access hidden dropdown menu using Java Selenium webdriver
I want to access a hidden dropdown menu on a webpage using selenium webdriver.
First I have to click an option from a navigation bar, after clicking on that option the dropdown menu appears and then I ...
1
vote
3
answers
386
views
How Do I Make a Dropdown Menu That Places A Text In a text Field
How do i make a drop down menu that when an option is chosen it creates a text that is placed in a text box. For Example,
Dropdown menu option1 = "are good"
i want the output to be, "Waffles Are Good"...
0
votes
1
answer
1k
views
Bootstrap dropdown menu doen't work
I am trying to use a simple bootstrap dropdown menu but the menu doesn't dropdown when clicking on it.
(I am working with java spring mvc 4)
<script src="jq/jquery-2.1.1.min.js"></script>
...
0
votes
2
answers
370
views
Getting the related information of the selected value in the Drop down without making extra AJAX call
Lets say I have the following drop down item on the JSP rendered using languageList. When I select a item in the dropdown, respective language is selected.
<html:select property="Language" >
&...