On Monday, March 14, 2016 at 10:55:53 AM UTC-7, Dave S wrote:
>
>
>
> On Monday, March 14, 2016 at 12:41:03 AM UTC-7, José L. wrote:
>>
>> Massimo, I'm missing all the time a grid (sqlgrid) widget in these 
>> examples. Aren't you considering it, or it's just it's not needed as the 
>> style will apply and look good in the three cases?
>> Sqlgrid is one of the most powerful objects in web2py forms and I think 
>> most of us could not live without it ;)
>>
>
> He's got a replacement in mind, and this is a preparatory step.  The new 
> one is going to be in Forms.py, and I think he's posted a simple example in 
> another thread.
>


form.py, which is mentioned at the top of the thread, but the only 
discussion is in the dev group, where this example was shown:

ef index():
    from gluon.form import Form
    form = Form(db.thing, request.args(0))
    if form.accepted: ...
    elif form.errors: ...
    else: ...
    return dict(form=form)

or

def index():
    from gluon.form import Form
    form = Form([Field(’name’),Field(‘age’,’integer’)])
    if form.accepted: ...
    elif form.errors: ...
    else: ...
    return dict(form=form)


/dps
 

>  
>

>> 2016-03-14 7:34 GMT+01:00 joseph simpson <jjs...@gmail.com>:
>>
>>> Should be:
>>>
>>> http://mdipierro.github.io/stupid.css/widgets/materialize.html
>>>
>>> On Sun, Mar 13, 2016 at 11:32 PM, joseph simpson <jjs...@gmail.com> 
>>> wrote:
>>>
>>>> I get a 404 on the:
>>>>
>>>> http://mdipierro.github.io/stupid.css/widgets/metarialize.html
>>>>
>>>> page..
>>>>
>>>> Take care and have fun..
>>>>
>>>> Joe
>>>>
>>>> On Sun, Mar 13, 2016 at 5:06 PM, Massimo Di Pierro <
>>>> massimo....@gmail.com> wrote:
>>>>
>>>>> can somebody help me with this little project?
>>>>>
>>>>> http://mdipierro.github.io/stupid.css/widgets/index.html
>>>>> http://mdipierro.github.io/stupid.css/widgets/bootstrap.html
>>>>> http://mdipierro.github.io/stupid.css/widgets/metarialize.html
>>>>>
>>>>> Specifically, can you read the instructions? Do they make sense? can 
>>>>> you help extend them? Does everything work for you?
>>>>> I am planning to release a new library for web2py called form.py that 
>>>>> will replace SQLFORM and use the new widgets.
>>>>>
>>>>> Massimo
>>>>>
>>>>> -- 
>>>>> 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 web2py+un...@googlegroups.com.
>>>>> For more options, visit https://groups.google.com/d/optout.
>>>>>
>>>>
>>>>
>>>>
>>>> -- 
>>>> Joe Simpson
>>>> “Reasonable people adapt themselves to the world. Unreasonable people 
>>>> attempt to adapt the world to themselves. All progress, therefore, 
>>>> depends on unreasonable people.”
>>>> George Bernard Shaw
>>>>
>>>
>>>
>>>
>>> -- 
>>> Joe Simpson
>>> “Reasonable people adapt themselves to the world. Unreasonable people 
>>> attempt to adapt the world to themselves. All progress, therefore, 
>>> depends on unreasonable people.”
>>> George Bernard Shaw
>>>
>>> -- 
>>> 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 web2py+un...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>

-- 
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 web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to