cementedmind / jquery-load-json

Automatically exported from code.google.com/p/jquery-load-json
0 stars 0 forks source link

Input text type= 'date' or type='time' doesn't work (solution) #16

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Add in a form <input id="ffind" type="date">
            <input id="ffint" type="time">
2. load Json

3. verify 

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?
Jquery Mobile 1.4.5 test with Crome

Please provide any additional information below.

The solution is 

change 
         case 'text':
     case 'hidden':

with:
        case 'text':
    case 'date':
    case 'time':
        case 'hidden':

Original issue reported on code.google.com by fvergni...@gmail.com on 18 Jan 2015 at 9:08