Questions tagged [jquery-mobile-fieldset]

15 questions
6
votes
1 answer

jquery mobile - custom select menu in a popup

Please find the below fiddle http://jsfiddle.net/yesvin/Xj8p8/
2
votes
1 answer

jQuery Mobile Dialog button takes all the space

I've set a dialog with a form in jQuery Mobile 1.3.1, and the button to submit the form is taking all the available space. With button at the end: As you can see, it's covering everything. Without it: Here it's fine, but I need the button to…
2
votes
1 answer

jQuery Mobile : How to change Radio button active state color

How to change the radio button background color on selection? $("input[type='radio']").click(function(e) { $("input[type='radio']").css('background-color', '#ff0000'); }); I have tried this..But it doesn't work. Its not working.I forgot to…
vinay
  • 1,276
  • 3
  • 20
  • 34
1
vote
1 answer

Can't physically select checkbox the first time through

When I test the page and click the checkbox nothing happens. If I go to another page and come back, the checkbox works. HTML
1
vote
1 answer

Validate a controlgroup with input of type="radio"

I want to validate a form that have a controlgroup with inputs of type="radio" like this:
@Html.ValidationSummary()
1
vote
1 answer

JQM adjust label width

We want to adjust all label-tags from a jquery mobile form with the with from the largest label. Here one codesample for one field: ...
1
vote
1 answer

jQuery mobile form submit without triggering page Naviagion

How can I navigate to a new page without triggering the jQuery mobile form handling, which creates a ajax request and then loads the page with it's speczial funcationallity (I don't know the name for it)
Stefan
  • 14,826
  • 17
  • 80
  • 143
1
vote
1 answer

data-icon in jquery-mobile radio button

I'm looking to replace the text of a my radio buttons with some icons from the data-icons in jquery mobile. My code is like this, and on jsfiddle
0
votes
1 answer

jquerymobile controlgroup not displaying properly

I'm updating website and gradually changing all bits over to jquerymobile to make it more phone friendly. I had a page where a user can select either a specific month or a date range. I toggled between them using some javascript. However, since…
devsie
  • 131
  • 11
0
votes
1 answer

jQuery Mobile forms combining input elements

When using jQuery mobile, is it possible to combine a checkbox or button with a text input? Something like in my image below. I want to use it as field validation so it will turn red or green when user updates the field.
Patrick Keane
  • 663
  • 3
  • 19
  • 41
0
votes
1 answer

jQuery Mobile radio buttons use fieldset and legend

The documentation uses a fieldset with a legend to tell the user what to do. But I would like to use the full width of the screen. If I remove the legend, then there is a blank column on the right-hand side now instead of the left. Q: How can I use…
Phillip Senn
  • 46,771
  • 90
  • 257
  • 373
0
votes
2 answers

JQuery Mobile not applied

I'm having some troubles with JQueryMobile because i want to implement some widgets but the themes and color of the widgets is not well-implemented. Here's a photo to show what's happening: And the correct widget for example would be that: If i…
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…
0
votes
2 answers

Legend tag contain text aligned left in JQuery mobile?

Does anybody have idea why tag is not centering in the JQuery mobile ? For example I tried following code.
I would this site.
FR STAR
  • 662
  • 4
  • 24
  • 50
0
votes
3 answers

How to clear or reset the search filter bar in listviews?

I've searched high and low for the answer to this question. I have an application that uses a listview search filter. However, when the user moves away from the page, the search filter "remembers" the previous search. My question: How do I reset…