Questions tagged [mobiscroll]

A wheel scroller user control optimized for touchscreens to easily enter date and/or time. The control can easily be customized to support any custom values and can even be used as an intuitive alternative to the native select control (dropdown list). It is designed to be used on touch devices as an alternative to the jQuery UI date picker.

Mobiscroll is user control meant for selecting values that is optimized for smartphones and tablets. It is open source and built on the jQuery library.

Resources

164 questions
0
votes
0 answers

Handling Mobiscroll Date Time picker in UFT

I am working on a siebel application which is using Mobiscroll for date time picker for seting the dates/Times. I am not able to get the past/future dates from this. It looks something like below. Can anyone give some idea how it can be…
Saurabh Seth
  • 43
  • 1
  • 2
  • 7
0
votes
0 answers

Mobiscroll javascript get 2 values to input element

I'm trying to set 2 values from the wheels for price and price2 input elements with mobiscroll but don't know how to get this working. Any idea how i can do this ? $('#price').mobiscroll({ theme: 'mobiscroll', display: 'bottom', maxWidth:…
0
votes
1 answer

Mobiscroll: can't bind the timepicker to the scope

Using the 'Mobiscroll' library, i can't get the timepiker selection to bind correctly. Plunker My code:
{{me}}
אVי
  • 1,913
  • 6
  • 22
  • 35
0
votes
1 answer

how do I add an item to mobiscroll at runtime

I have a mobiscroll list. I added an extra button called "Add new" I want to click that button and add a new item to the mobiscroll list. Is that possible? I've been digging through that api to no avail. I can catch the event with a custom handler…
user2625495
0
votes
2 answers

How to increase the shown results from mobiscroll

i'm just working on an application which has a inline-scroller included. It works fine but i want to increase the results mobiscroll gives out. I have a DB-Request which fills my Mobiscroll with select values but it only show me the first 2 results…
Sithys
  • 3,655
  • 8
  • 32
  • 67
0
votes
1 answer

How to set default time in Mobiscroll?

The main problem is that the project is a bit old and I can't update Mobiscroll and also don’t know the current version of it... My code looks like this: jQuery('#select-time').mobiscroll().time({ 'timeFormat': 'HH:ii:ss', 'timeWheels':…
user1692333
  • 2,461
  • 5
  • 32
  • 64
0
votes
1 answer

How to use mobiscroller *instead of* input?

I'm want to use the mobiscroll selector (demo | source) on my (desktop oriented) website. I've got a basic version working here. The way that works is that when you click the input at the top, it loads the (enormously sexy) spinner as an overlay…
kramer65
  • 50,427
  • 120
  • 308
  • 488
0
votes
1 answer

mobiscroll angularjs Error: f.mobiscroll is not a function

I've just downloaded Mobiscroll with angular js integration ( I've used this in the past without angularjs ). I'm following the instructions at http://docs.mobiscroll.com/2-13-0/ng-integration, and am getting the following error: Error: f.mobiscroll…
0
votes
1 answer

Mobiscroll - Change input value of a time

I would like to change the input element("cookingTime"). $('#cookingTime').mobiscroll({ preset: 'time', lang: 'fr', display: 'bottom', mode: 'scroller', theme: 'android' }); $('#cookingTime').click(function () {…
user2274060
  • 896
  • 5
  • 18
  • 35
0
votes
1 answer

Mobiscroll time component - Bad display

I've created a web project in ASP.NET MVC 4 and JQuery Mobile. I try to use a mobiscroll component to print a scroller for time. The problem is that the display is weird. This is my code : @Scripts.Render("~/ScriptsJQuery") …
user2274060
  • 896
  • 5
  • 18
  • 35
0
votes
1 answer

Mobiscroll sets input to readonly even when not displayed/shown?

I display two dates in a input-field. When the user clicks on a valid date, mobiscroll should display the date and allow it to be changed. When the user sets the cursor outside one of the dates (by clicking just before or after one of the dates),…
0
votes
1 answer

Mobiscroll Both Date and Time Picker

The Mobiscroll website seems to imply that it's possible to have a picker that displays both the date and time "Date, Time or Both Use it as just a date picker or time picker or choose the full date & time" However from their documentation and…
Jeff Ames
  • 1,555
  • 11
  • 27
0
votes
1 answer

Mobiscroll scrolls to bottom of page when clicked

Mobiscroll's Date & Time scroller looks very promising. However, I've noticed that in my webpage and on the Mobiscroll webpage (http://demo.mobiscroll.com/mobile/datetime/date) that: when the Mobiscroll Date & Time scroller is activated by clicking…
hacklan07
  • 308
  • 4
  • 10
0
votes
1 answer

Can't get Mobiscroll ListView to work

I'm getting the error bellow on the browser Javascript console when the page loads thus the control doesn't get created: Uncaught TypeError: Object [object Object] has no method 'listview' HTML
  • Item 1
  • Item 2
paul-2011
  • 675
  • 10
  • 27
0
votes
1 answer

Mobiscroll auto theme usage

How can I add auto theme selection to my mobiscroll datepicker? The code i've now is not working: $("#datestartscroller").mobiscroll().date({ theme: 'auto', display: 'modal', dateOrder: 'ddmmyy', …