- Screen name: somu.web
somu.web's Profile
3 Posts
3 Responses
0
Followers
Show:
- Expanded view
- List view
Private Message
- 22-Jan-2013 08:16 AM
- Forum: Using jQuery Plugins
I am facing problem with showing validation message in a proper position when change the size of the window, am using jquery validation engine along jquery mobile.
When I submit the form the validation message will appear at correct position when rotate the screen or resize it the message will not move to its proper field it will remain in the 1st position itself.
Please guide regarding this.
Thanks
- 22-Jan-2013 01:15 AM
- Forum: Using jQuery Plugins
I have problem with scrolling while displaying error message in mobile devices,
the page should scroll up to 1st error message in my page this functionality is working fine in web browsers(PC) but same is not working properly in mobile browser scroll position is pointing some other place. Am using jquery validation engine to validate my form (VER:Validation Engine 2.2, jQuery plugin) and jquery mobile to create the form.
Thanks in advance
- 12-Dec-2012 01:20 AM
- Forum: jQuery Mobile
Hello Everyone,
I have developed a page which is for user registration, I am using jquery.mobile-1.1.1.min for page development and jquery.validationEngine for validating my form, the problem when the form validates one of my select box will show validation message if it is not selected but that message is not getting hidden after I select proper value it is happening only in android 2.2 and 2.3 browsers.
The following is the code where I am facing the problem- <fieldset data-role="controlgroup" >
<select name="year" id="year" class="validate[required,custom[onlyNumber],min['.(date('Y') - 100).'],max['.(date('Y') - 20).']]">
<option>年</option>
<?php
$current_yr = date('Y');
$start_yr = $current_yr - 100;
$end_yr = $current_yr - 20;
for ($i = $start_yr; $i <= $end_yr; $i++ ) {
echo "<option value=$i>".$i."</option>";
}
?>
</select>
<select name="month" id="month" class="validate[required,custom[onlyNumber],min[1],max[12]]">
<option>月</option>
<?php
for ($num = 1; $num <= 12; $num++){
$mon = sprintf("%02d", $num);
echo "<option value=$num>".$mon."</option>";
}
?>
</select>
<select name="day" id="day" class="validate[required,custom[onlyNumber],min[1],max[31]]">
<option>日</option>
<?php
for ($j = 1; $j <= 31; $j++){
$day = sprintf("%02d", $j);
echo "<option value=$j>".$day."</option>";
}
?>
</select>
</fieldset>
Please guide me regarding this..
Thanks in advance...- «Prev
- Next »
Moderate user : somu.web
© 2012 jQuery Foundation
Sponsored by
and others.


