*coresponds
On Sunday, 14 July 2013 02:06:16 UTC+2, Najtsirk wrote:
>
> Hi,
>
> I am struggling with implementation of image upload in Redactor wysiwyg.
>
> Does $FILES['file']['type'] corsponfs to request.post_vars.file.type ?
>
> Thanks for the anwser.
>
> Najtsirk
>
--
---
You received this
Hi Everybody,
When I am viewing the table, "'NoneType' object is not iterable" occured.
But, I am able to insert from admin page.
General info:
URL http://127.0.0.1:8000/mstureg/appadmin/select/db?query=db.cars.id%3E0
web2py™Version 2.5.1-stable+timestamp.2013.06.06.15.39.19PythonPython 2.7.3
T
Hi,
I am struggling with implementation of image upload in Redactor wysiwyg.
Does $FILES['file']['type'] corsponfs to request.post_vars.file.type ?
Thanks for the anwser.
Najtsirk
--
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsu
The difference between the two is that in former case the output returned
by the DB is normalized (each record is a Row object) while in the
executesql case the output is not normalized (each record is a tuple
containing data in the database specific representation). It does take time
to loops
Thanks!
On 13 July 2013 19:33, Anthony wrote:
> requires=IS_EMPTY_OR(IS_IN_DB(db, 'area.id', '%(nombre)s'))
>
>
> On Saturday, July 13, 2013 6:08:26 PM UTC-4, Eduardo Cruz wrote:
>>
>> is there a way to have something like << requires=IS_IN_DB(db, 'area.id',
>> '%(nombre)s') >> but that the fi
requires=IS_EMPTY_OR(IS_IN_DB(db, 'area.id', '%(nombre)s'))
On Saturday, July 13, 2013 6:08:26 PM UTC-4, Eduardo Cruz wrote:
>
> is there a way to have something like << requires=IS_IN_DB(db, 'area.id',
> '%(nombre)s') >> but that the field is not actually required? I want
> SQLFORM to make a
Hi step,
You can do the following in your controller after defined your grid
x = SQLFORM.grid()
x.element(_type='submit')['_value'] = T("something")
It will set all submit buttons labes as something in the grid
2013. július 12., péntek 16:14:24 UTC+2 időpontban step a következőt írta:
>
> How c
is there a way to have something like << requires=IS_IN_DB(db, 'area.id',
'%(nombre)s') >> but that the field is not actually required? I want
SQLFORM to make a html select with that field but I want to have the option
to just not select any value.
--
---
You received this message because y
I don't care about ORM performance which is worse both in term of bare
performance and in development speed, but using large databases and doing
profiling I find that most of the time that is "spent on DB IO" is ispent
inside python code unless executesql is used. There is still a lot of room
for
massimo's statement is a good starting point. for debugging i highly
recommend getting charles http proxy: http://www.charlesproxy.com/ it's my
best friend in debugging network calls from mobile apps!
once you have some details about the networks calls and cookies etc we
should be able to hel
Thanks Marin you did a great job
On Jul 13, 2013 9:01 PM, "Marin Pranjić" wrote:
> There is a patch pending:
> https://github.com/web2py/web2py/pull/132
>
> jQuery UI is already fixed in trunk
>
>
> Marin
>
>
> On Sat, Jul 13, 2013 at 7:17 PM, Jason (spot) Brower
> wrote:
>
>> Yeah, I have one o
There is a patch pending:
https://github.com/web2py/web2py/pull/132
jQuery UI is already fixed in trunk
Marin
On Sat, Jul 13, 2013 at 7:17 PM, Jason (spot) Brower wrote:
> Yeah, I have one of my employees working on it. Hopefully it will be fixed
> soon as I like using it. Jqueryui is also n
I'm using version 2.5.1 stable and I've created a virtual field as part of
a table definition, like this:
db_mydb.define_table('my_table',
Field('ROWID', 'id'),
Field('test_field1', 'string', required=True),
Field('test_field2', 'string', required=F
Personally, I would like to see more than a book in the book.
Ways to post comments and cross link between items.
Ability to create videos linking to various tasks.
Downloading the source code in segments. (copy pasting is nasty right now.)
I would be happy to make videos too. :)
BR,
Jason
On Sa
Yeah, I have one of my employees working on it. Hopefully it will be fixed
soon as I like using it. Jqueryui is also not working.
BR,
Jason
On Sat, Jul 13, 2013 at 12:39 AM, Stephan Holtmeier <
stephan.holtme...@gmail.com> wrote:
> Same for me!
>
>
> Am Mittwoch, 26. Juni 2013 21:35:05 UTC+2 s
I agree. Google group + web2pyslices have served us well.
On Saturday, 13 July 2013 08:19:56 UTC-5, Anthony wrote:
>
> I think Google Groups already does most of that, no? If you want more
> tags, we can always add them. There's also web2pyslices.com, which allows
> you to ask questions, and of
On Saturday, July 13, 2013 5:47:32 AM UTC-4, step wrote:
> Incidentally, Anthony why did you use request.args[-3] instead of
> request.args[0]? What's the reasoning behind the negative index idiom that
> I see in use throughout the gluon files?
>
It is possible that links to an action that retu
I think Google Groups already does most of that, no? If you want more tags,
we can always add them. There's also web2pyslices.com, which allows you to
ask questions, and of course, Stack Overflow.
One thing I like about Google Groups is that it is used by a lot of open
source projects, so you c
Is there anybody in London willing to give a talk on web2py at a Python meetup?
Massimo
--
---
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...
Hi!
Searching this group and google showed that currently there is likely to be
no forum for asking user question on Web2Py.
Is there any reason? Or just no demand?
I think that idea with forum is nice, because there can be categories for
questions, i.e. DAL, Views, etc and some FAQs (i.e. on
Incidentally, Anthony why did you use request.args[-3] instead of
request.args[0]? What's the reasoning behind the negative index idiom that
I see in use throughout the gluon files?
--
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsu
Yes, thank you, this did it for me
if request.args[0] in ('view','edit','new'):
grid.element('[title='+T('Back')+']')['_href'] = URL('')
I didn't need to use "parent" because in my case grid.showbuttontext ==
False
On Friday, July 12, 2013 6:53:13 PM UTC+2, Anthony wrote:
>
> Maybe somethin
22 matches
Mail list logo