[web2py] Re: Form output format

2011-10-06 Thread miroslavgojic
Thank you, this was helpful for me. In chroma developer tools is ease way to read code and it is sorted by tags. regards Miroslav On Oct 6, 12:02 pm, Anthony wrote: > On Thursday, October 6, 2011 3:46:04 AM UTC-4, miroslavgojic wrote: > > > For what need web2py use next code in form on end of f

[web2py] Re: Form output format

2011-10-06 Thread Anthony
On Thursday, October 6, 2011 3:46:04 AM UTC-4, miroslavgojic wrote: > > For what need web2py use next code in form on end of form definition. > > > > > > > These are hidden fields used by web2py to process submitted forms. _next is used by Auth to store the URL originally requested befo

Re: [web2py] Re: Form output format

2011-10-06 Thread Miroslav Gojic
You have right, Chroma developer toll is better than Firefox addons On Thu, Oct 6, 2011 at 10:56, Farsheed Ashouri wrote: > Chrome development tools is way better than firebug in my experience. > > > On Thursday, October 6, 2011, miroslavgojic wrote: > >> Hi, >> >> I know for firebug and mozil

Re: [web2py] Re: Form output format

2011-10-06 Thread Farsheed Ashouri
Chrome development tools is way better than firebug in my experience. On Thursday, October 6, 2011, miroslavgojic wrote: > Hi, > > I know for firebug and mozilla addons, and I use them. > > I try to use CDUR, crud.settings.formstyle = ('divs') and it is work > after some figuring out how to get t

[web2py] Re: Form output format

2011-10-06 Thread miroslavgojic
Hi, I know for firebug and mozilla addons, and I use them. I try to use CDUR, crud.settings.formstyle = ('divs') and it is work after some figuring out how to get that work I don't see problem to make form in more lines, just put CR (\n) or what is notation for new line in python/web2py environm

[web2py] Re: Form output format

2011-10-05 Thread juanduke
Hi miroslavgojic: To see html and other things like css, javascript I recomend you use firebug (a firefox addon) or similar in chrome (getfirebug.com) Other firefox addon (only useful to see html only) is: view source chart. Both firebug and view source chart can be found in addons.mozilla.com T

[web2py] Re: Form output format

2011-10-05 Thread miroslavgojic
It is not ease to reed to long lines of HTML code and it is practical when you need to find some id or class of HTML tag element. And for form I see that is used table can I and how make my output for form, forms, ... with div tag instead table tag. On Oct 5, 7:48 pm, Cliff wrote: > When first

[web2py] Re: Form output format

2011-10-05 Thread Cliff
When first starting out, it would be a lot easier to see what the html helpers are doing if the html were tidier. On Oct 5, 10:44 am, Anthony wrote: > If you're using the FORM or SQLFORM helper (or Crud), I don't think there's > any way to control the way it is serialized in the response body. Wh

[web2py] Re: Form output format

2011-10-05 Thread Farsheed Ashouri
You may need to render it first and edit it again. But why do you want that kind of output? If you need to show o hide something, I recommend using jQuery.

[web2py] Re: Form output format

2011-10-05 Thread Anthony
If you're using the FORM or SQLFORM helper (or Crud), I don't think there's any way to control the way it is serialized in the response body. Why do you need that format? Anthony On Wednesday, October 5, 2011 10:06:25 AM UTC-4, miroslavgojic wrote: > > I have simply form and it work, but in HTM