Questions tagged [jquery-mobile-checkbox]

jQuery Mobile Checkbox refers to the checkbox implementation of the jQuery Mobile framework.

jQuery Mobile Checkbox refers to the checkbox implementation of the jQuery Mobile framework. It is a mobile device friendly UI framework for module for managing, displaying and handling checkbox fields, while providing various options for applying custom styles and functionality.

In jQuery Mobile, checkboxes can be grouped horizontally (which makes them useful for building toggle controls), or vertically (similar to a list, but with a checkbox inside).

13 questions
4
votes
0 answers

jQuery Mobile checkbox takes time to get checked/unchecked on iPhone

I am facing an issue with jQuery Mobile on iPhone. I have a list of checboxes and a checkbox to select "All". After an initial few taps on the checkbox, the check box takes few seconds to get marked as checked/unchecked. The checkbox doesnt get…
3
votes
1 answer

Jquery Mobile Checkbox issue

I´m trying to change the checkbox status (checked / unchecked) using JQM. In the HTML part i have a checkbox, a button Clear and a button Set. In the Java Script part i have the code to clear and to set the checkbox "checked" value using the…
Alvaro
  • 35
  • 1
  • 3
3
votes
3 answers

jQuery Mobile layout customization

I'm taking my first steps in jQuery Mobile and I'm getting a bit disappointed with the lack of customization it provides... As an example, I have a simple form and I'd like to customize the layout of the form components. This is my code:
MikO
  • 18,243
  • 12
  • 77
  • 109
2
votes
2 answers
1
vote
1 answer

jQueryMobile uncaught exception when REMOVING checkboxradio

Getting this message: Error: cannot call methods on checkboxradio prior to initialization; attempted to call method 'refresh' i followed the demo found here: Ugly Mongrel Here's a snip of my JS: function(){ var $pbNum = $('
cautionbug
  • 435
  • 5
  • 18
1
vote
1 answer

Use radio buttons instead of Checkbox popup in Jquery Mobile Table

Well searching for the code or plugin or anything similar to what i need... SCREENSHOT:- The screenshot say it all, basically i want to embed radio buttons for column toggle in jquery mobile tables, so that user can get one column which he…
0
votes
1 answer

Jquery mobile transition checkbox select does not work second time in Jquery onclick function()?

I am not able select the checkboxes second time on the basis of its Id's in textbox, Id's passes from textbox is separated by comma (,) like (1,2,3,..). First time when page gets load everything works fine for me but then when I uncheck the…
Rahul Hendawe
  • 902
  • 1
  • 14
  • 39
0
votes
1 answer

2+ jquery mobile horizontal checkboxes in one page messed up

I need two horizontal checkboxes in one page:
jon doe
  • 443
  • 1
  • 4
  • 9
0
votes
1 answer

from jquery mobile 1.3.2 to 1.4.3, checkbox horizontal failed

Here's the html:
Here's the javascript: for (var i = 0; i < json.length; i++) { var usr = json[i]; var mid = usr.mid; var input = '
jon doe
  • 443
  • 1
  • 4
  • 9
0
votes
1 answer

jQuery Mobile & AngularJS checkboxes horizontal

Using jQuery Mobile and AngularJS together, without a plug-in but having read about it, loading jQuery first, and the two frameworks are mostly playing very nicely and quite powerful having both. Trying to render jQuery Mobile checkboxes with
0
votes
1 answer

How to change checkbox height in jquery mobile 1.4.0?

I have the following checkbox , and I want to enlarge the checkbox by changing its height since its too small in mobile devices , I have tried the following but it didn't work in jQuery mobile 1.4.0 , please any help would be greatly appreciated…
user
  • 621
  • 15
  • 46
0
votes
0 answers

Checkbox not getting redrawn on refresh

I have an app that has a listview with checkboxes on it. Here is the method that actually draws the listview. (panelListId is the ID of the UL tag that contains the listview.) /** * @param panelListId * @param panelPersons */ function…
0
votes
1 answer

jQuery: Script to append when checkbox is checked half working - why is checkbox not actually checking now?

Goal: A (jQuery Mobile) popup with a searchable list of people that can be checked off. When checked they are displayed in a table list (and removed when unchecked, but I haven't figured that part out yet). I've gotten it working where they show…