Sorry in your case it is
form[1][0][2][0]="Som text"
This will replace the text in the DOM element of the serialized form
returned by the call to SQLFORM.smartgrid
Please note that the indexes (1,0,2,0) I used above can be different in
your case. To find out start by printing the element to the
Hi Kiran and Anthony,
Thanks for your replies.
Indeed I have a form with field 'label' and a var 'label in the URL.
Changing request.vars to
request.get_vars solved the issue.
Kind regards,
Annet
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/w
Re #3: I highly recommend swapping in Eonasdan's bootstrap-datetimepicker:
https://github.com/Eonasdan/bootstrap-datetimepicker
I just altered my web2py_ajax.html to swap dependencies and initialize
datepickers:
# response.files.insert(1,'/inc/css/calendar.css')
# response.files.insert(2,'/inc/
Thanks a lot icodk. Now I am able to change the text of buttons.
--
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
I have sending email problems that I am sure are related to SSL/TLS.
I am running the last Web2py version with Python 2.7.9 and Apache 2.4
When I make a mail script with SMTPLIB, Web2py tells me that SSL is not
present. When I want to "import ssl" within a Web2py script, no ssl module
is found
On Tuesday, June 6, 2017 at 5:02:10 AM UTC-4, tim.nyb...@conted.ox.ac.uk
wrote:
>
> Re #3: I highly recommend swapping in Eonasdan's bootstrap-datetimepicker:
> https://github.com/Eonasdan/bootstrap-datetimepicker
>
That's nice but is tied to Bootstrap and has a lot of dependencies.
Something m
Dear all,
I have started dabbling with web2py since a few weeks. Created several
simple apps of my own and quite happy with it as a web framework. I have
the following questions, to which I could not find a satisfactory answer
within the mailing list. I would be very much grateful if someone
Thanks a lot, Anthony.
I use to check the framework code before posting questions, and when I saw
this in the callback method of the autocomplete widget:
def callback(self):
if self.keyword in self.request.vars:
field = self.fields[0]
if type(field) is Field.Virtual:
Just some thought not solution... Maybe you could try to decouple your data
from your table, by doing so you then will be able to flush the entire
model instead of just modify it (ALTER), that way you will avoid the issue
with rname.
You can use this trick to decouple your basic required data :
Thanks, this save me a lot of trouble!
--
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
We could continue this conversation here...
When you mention "persist the list of flagged users", it mean that there is
no such thing as persistence in web2py and that at each request web2py is
completely "ignorant" about any given state it may find itself in??
I guess using session as a persiste
Seems working now. Sorry Massimo, may be I was getting the cache.
On Monday, June 5, 2017 at 8:40:10 PM UTC-4, Ron Chatterjee wrote:
>
> Okay, but Massimo,
>
> What's the logic to route multiple domain to multiple different apps
> hosted at pythonanywhere? The above don't seem to work (exampl
wing IDE.
On Tuesday, June 6, 2017 at 9:34:01 AM UTC-4, Assela Pathirana wrote:
>
> Dear all,
>
> I have started dabbling with web2py since a few weeks. Created several
> simple apps of my own and quite happy with it as a web framework. I have
> the following questions, to which I could not
Sorry, I forgot about that -- you can in fact use a virtual field. However,
for it to work properly, you must specify the table name when defining the
virtual field:
db.auth_user.full_name = Field.Virtual('full_name',
lambda row: '%s %s' %(row.auth_user.
f
Hello Pierre,
What are your trying to do exactly which doesn't work as expect??
The config you show us about login_next is not different from the default
behavior of web2py so, I don't understand what you expect other than that...
About registration_requires_verification and registration_require
On Tuesday, June 6, 2017 at 11:11:47 AM UTC-7, Ron Chatterjee wrote:
>
> wing IDE.
>
>
And do you have an answer to his question about Wing IDE?
> On Tuesday, June 6, 2017 at 9:34:01 AM UTC-4, Assela Pathirana wrote:
>>
>> Dear all,
>>
>> I have started dabbling with web2py since a few weeks
On Tuesday, June 6, 2017 at 3:32:22 AM UTC-7, e27...@gmail.com wrote:
>
>
> I have sending email problems that I am sure are related to SSL/TLS.
>
> I am running the last Web2py version with Python 2.7.9 and Apache 2.4
>
> When I make a mail script with SMTPLIB, Web2py tells me that SSL is not
>
On Tuesday, June 6, 2017 at 2:36:19 AM UTC-4, Doug Taylor wrote:
>
> This is becoming a show-stopper for me now as I cannot ADD fields to an
> exiting table either.
>
It shouldn't be a show stopper, as you can always migrate the database via
other means. Just use an external tool, or simply run
> Your SSL module is probably in your Python's site packages, and web2py may
> not be looking there
> (it has its own ideas about where packages should be).
>
No, web2py will find modules in the usual Python search path, though it
will also find modules in the /modules folder of the current a
>
> When you mention "persist the list of flagged users", it mean that there
> is no such thing as persistence in web2py and that at each request web2py
> is completely "ignorant" about any given state it may find itself in??
>
Well, each request is executed independently, though there are mean
Funny thing :
On the distant server,
1/ If I launch the mail controller from Web2py.exe (127.0.0.1/admin), it
does find SSL module (python version 2.7.9) --> the mail is sent
2/ If I launch the mail controller as 'localhost/admin' i.e. through Apache
2.4, it does not find the SSL module (pyth
I notice the same problem.
Using firefox, the js console reveals that web2py-bootstrap3.js is trying
to call the function "web2py.validate_entropy", which is in web2py.js, but
cannot find it.
The error is:
* ReferenceError: web2py is not defined. * (line 14, posn 7 of
web2py-bootstrap3.js).
Thank you for checking that.
Yeah, I'm still getting this, even when logged in. As a temp workaround I
swapped all the instances of "validate_and_insert" in my app for "insert".
I did find a note I made a couple years ago from back before I upgraded to
the latest version that said validate_and_
I posted a question a couple days ago asking how I can read a SQLFORM's
field and update it using javascript when its writable=False (because user
is not supposed to make change to the subtotal field manually, it should be
calculated based on the sum of all the items), but I didn't get any reply
Hi,
I use json field with following filters
Field('responses', 'json'),
db.learn.responses.filter_in = lambda obj, dumps=dumps: dumps(obj)
db.learn.responses.filter_out = lambda txt, loads=loads: loads(txt)
but if I want to select based on equality -- nothing is found -- query:
db.learn.res
Dave
That standalone flag saved my life !!! I LOVE YOU :D :D :D
thankyou a ton !!!
On Wednesday, May 31, 2017 at 7:43:09 AM UTC+12, Dave S wrote:
>
>
>
> On Tuesday, May 30, 2017 at 12:05:01 PM UTC-7, Dave S wrote:
>>
>>
>>
>> On Tuesday, May 30, 2017 at 8:50:50 AM UTC-7, Raymond Smith wrote:
Why have you defined custom filter_in and filter_out functions to convert
to/from JSON -- that is handled automatically by the DAL when you specify
the "json" field type?
On Tuesday, June 6, 2017 at 8:54:27 PM UTC-4, Jurgis Pralgauskis wrote:
>
> Hi,
> I use json field with following filters
>
Good morning all,
I am using SQLFORM.grid for the first time and I'm baffled (not for the
first time).
Related posts don't illuminate my issue and at least one seems to
contradict what I'm seeing.
This is the controller - with some dross removed...
tasks = (db.task.person == person.id)
field
STOP PRESS!
As has happened more than once - documenting the problem opened my mind to
other possibilities.
I was wrong in saying... "One post indicated this was a list of the task
ids but not from what I can see, instead it appears to me to be returning
the grid row ids for checked items."
On Tuesday, June 6, 2017 at 4:13:26 PM UTC-4, Jordan Ladora wrote:
>
> I notice the same problem.
>
> Using firefox, the js console reveals that web2py-bootstrap3.js is trying
> to call the function "web2py.validate_entropy", which is in web2py.js, but
> cannot find it.
>
web2py.validate_entrop
Note, this has already been fixed in the master branch, so should be fine
in the next release.
Anthony
On Tuesday, June 6, 2017 at 11:11:26 PM UTC-4, Anthony wrote:
>
> On Tuesday, June 6, 2017 at 4:13:26 PM UTC-4, Jordan Ladora wrote:
>>
>> I notice the same problem.
>>
>> Using firefox, the j
I just used the firefox inspector to see the source and spot the id and tag
I need to get the non-writable field value, something like below:
var quote_id = jQuery('#quotation_id__row').children("p")[0].innerHTML;
Apologize for any bother, I am still learning a lot of stuffs eg. web2py,
javas
32 matches
Mail list logo