- Screen name: somu.web
somu.web's Profile
4 Posts
3 Responses
0
Followers
Show:
- Expanded view
- List view
Private Message
- 12-Aug-2013 07:22 AM
- Forum: jQuery Mobile
Hello Everyone,
I have problem with checkboxes defined in the fieldset ,
1.The reponse is bit slow on checking and unchecking
2.When I have mutiple checkboxes checked ,if try uncheck a box it will uncheck other checkbox along with one I unchecked.
Ex :
Lets say if I have checked check1,check2,check3 and now when uncheck check1 the check3 or check 2 is also getting uncheck. This problem comes sometimes not always...<fieldset data-role="controlgroup">
<label for="check1">my check 1</label><input
class="reqValidate" type="checkbox" name="check1" id="check1"
value="1" /> <label for="check2">my check 2 </label><input
class="reqValidate" type="checkbox" name="check2" id='check2'
value="1" /> <label for="check3"> メーmy check 3</label><input
class="reqValidate" type="checkbox" name="check3" id="check3"
value="1" />
...........
..........
</fieldset>
Please provide soluntion for this..
Thanks in advance
Somesh- 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
© 2013 jQuery Foundation
Sponsored by and others.

