Tagged Questions
0
votes
0answers
158 views
Customize select dropdown ui implementation in android phonegap
Is there a way to change the ui implementation of select menus in android phonegap, can we change the background of the options so that they look lighter ?
0
votes
0answers
130 views
jquery mobile - select, deselect all select menu options by clicking on “ALL” option
Here is my problem: I use Jquery mobile to style some form elements. One of the form elements is a multiple select menu. I want this select menu to have this behavior http://jsfiddle.net/LynCV/ (this ...
0
votes
3answers
158 views
JQuery Mobile - Getting the Value of a SelectMenu
When I attempt to get the value from my the select menu, I get an empty value.
I know the reason I do is that the jquery mobile markup results in two items with a class of "mySelect"-- so the ...
0
votes
1answer
170 views
jQuery mobile: Why does Select Menu break when I append it to another DOM node on a different page?
I have a jquery mobile site with three pages (<div data-role = 'page'>).
On page 1's header I have a Select Menu being used for a Choose Language component:
<div data-role = 'header'> ...
1
vote
1answer
151 views
jQuery Mobile Select Menu handler, trying to set a variable outside the scope of handler
I am trying to set a variable to the selected value of a select menu inside the select menus handler. The problem is that my variable isn't recognized within the context of the select handler and if I ...
0
votes
1answer
299 views
Jquerymobile - creating select menu using javascript
I am trying to create and android app using jquerymobile and cordova 2.0.0. I am planning to add localStorage which will save settings of app to android storage. Right now I am trying to force my ...
0
votes
0answers
309 views
Jquery Mobile and Android 4.1 Native select menu issue
I have an Android app using Jquery Mobile. I have tested my app on Android 3.0 and above.
Everything works fine, but on Android 4.1 Jelly Bean, I have a problem when I click on the HTML Select Tag.
I ...
0
votes
1answer
933 views
jQuery Mobile - changePage and select menu not working
This is my first time with jQuery Mobile and I'm actually using it from a WP theme I got. I understand that this might be theme related but I just want to make sure.
So, it is a Wordpress jQuery ...
4
votes
1answer
2k views
jQuery Mobile 1.1.1 Custom Select Menu - Placeholder Text not Visible
After upgrading to jQuery Mobile 1.1.1 earlier today (7/13/2012) I noticed that all of my Custom Select menus no longer show the placeholder text on page load. Is there something I need to do ...
2
votes
3answers
1k views
How to change page using Jquery mobile select menu?
I am developing an app where i am using select menu in it. As i am new to developing i don't know how to change page when select menu was selected. I tried onclick events & onchange events on ...
0
votes
1answer
391 views
jQuery Mobile: single choice select menu values interfering with handler for multiple choice menu
I am creating a jQuery Mobile page that has two select menu's, one is multiple choice, the other is single choice. The multiple choice menu is set to trigger a handler function which loops though the ...
0
votes
1answer
540 views
Opera Mobile and jQuery Mobile Select menus display bug
There is a bug in jQuery mobile with Opera Mobile which displays the default select over the custom one from jQuery Mobile, see the screenshot below directly taken from jQuery Mobile's website!
...
0
votes
1answer
577 views
Jquery mobile select menu overlays on extreme right
I am using jquery mobile select menu with data-native-menu as false. The issue is if i click select menu, overlay popups on extreme right, instead of above the select menu control. i fixed my page ...
1
vote
0answers
550 views
Jquery Mobile Android Native Select Menu not working when html is embedded in Sharepoint Content Editor Webpart
We are building a jquery mobile website and the requirement was to host the site within sharepoint.We are using Content Editor Webpart to embed our html from document library.This was the recommended ...
0
votes
1answer
346 views
jQuery Mobile Multiple Select menu, referencing selections in callback
I'm implementing a multiple select menu in jQuery mobile. I'd like to reference all selected items in a call back function (Ideally it would be triggered by the close event). The implementation ...
0
votes
1answer
1k views
selectmenu ('refresh', true)
I get form from zend framework site and put it in response in new file in function written by jquery mobile, but I get this error:
uncaught exception: cannot call methods on selectmenu prior to
...
0
votes
2answers
2k views
jQuery Mobile Select Menu Data Binding
The code at the bottom of the page dynamically populates a jQuery Mobile select menu. In addition to populating the menu I'd like to bind data to each menu item and assign a click handler. This is ...
0
votes
1answer
431 views
jQuery Mobile dynamically creating select menu
I need to be able to add rows to a table dynamically with jQuery mobile. The rows consist of selection menus and input boxes. The code I have seems to work in pure jQuery and html but when I add the ...
1
vote
1answer
497 views
Tell if Jquery Mobile Select Menu is Open
If there a way to tell if the jQuery Mobile select menu is open? I've been trying to check in various places to see if it is open to turn off certain events or in other cases close it.
Closing it ...
0
votes
2answers
394 views
Is there any way to control the layout of the close button on a jQuery Mobile custom select menu?
I have a custom select menu (multiple) defined as follows:
<select name="DanceStyles" id="DanceStyles" multiple="multiple" data-native-menu="false">
Everything works fine except that I want ...
0
votes
2answers
119 views
Submitting select menus
I use a code in jquery-mobile to dynamically generate select menus, but I'm having trouble passing the data to the database.
The menus are generated using the append method, for each form element, ...
2
votes
1answer
860 views
How to set offset on (selectmenu) overlays in jQuery Mobile [using a fixed header toolbar]?
Is there a way to define the offset JQM uses for selectmenu overlay?
Other options can be set via prototyping like this:
$.mobile.page.prototype.options.addBackBtn = true;
...
0
votes
1answer
961 views
Setting the opt group property dynamically to Select
I am adding new options to a select menu by the following way:
var options1 = {
val1 : 'text1',
val2 : 'text2'
};
$.each(options1, function(val, text) {
$('#SelectMenu').append( new ...
0
votes
1answer
332 views
How can we select an option while loading them in Select Menu
I am adding new options to a select menu by the following way:
var options1 = {
val1 : 'text1',
val2 : 'text2'
};
$.each(options1, function(val, text) {
$('#SelectMenu').append( new ...
3
votes
2answers
494 views
Event handler for unselection of an Item in select menu with mutiple properties enabled
I am using a select menu which will allow multiple selections to be done. I have an event handler
$("#idInventory").change(function () {
$("#select option:selected").each(function () {
...
0
votes
3answers
4k views
Setting a default selection in a select menu in JQuery Mobile?
I'm trying to set the default selection in a select menu in JQuery mobile. The docs have this:
var myselect = $("select#foo");
myselect[0].selectedIndex = 3;
myselect.selectmenu("refresh");
...
