something like this in controller
checkbox = INPUT(_name='delete', _type="checkbox", _id='delete')
if condition:
checkbox['_checked'] = "checked"
or in view
{{
if condition:
=INPUT(_name='delete', _type="checkbox", _id='delete',
_checked="checked")
else:
=INPUT(_name='delete', _type="checkbox", _id='delete')
pass
}}
Read here about checked attribute value
- http://stackoverflow.com/a/7852002/4065350
Thank You
- Gaurav Vichare
On Monday, January 16, 2017 at 10:29:51 PM UTC+5:30, Ramos wrote:
>
> how to add "checked" to an input helper ?
> i have this input and want to add a "checked" based on a condition
>
> <div>{{=INPUT(_onclick="ajax('"+url+"',[],':eval')",
> _type="checkbox",_class="friendread",_id=friend["id"],_value=friend["company"],value=False)}}
>
> regards
> António
>
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.