Relsi, do you know whether he's developing using Obj-C or a framework like
(Titanium, Corona, LiveCode, etc...)?
I ask because he could use a webview to usher content back and forth from
the network calls to the main meat of his application. This is pretty
trivial with Obj-C, Corona (Lua), and Tit
HI,
>From web2py book,
http://www.web2py.com/book/default/chapter/06
try:
execute models, controller function and view
except:
rollback all connections
log the traceback
send a ticket to the visitor
else:
commit all connections
save cookies, sessions and return the p
Hi,
I have a cutom form which I am displaying using SQLFORM.factory as given
below:
searchform=SQLFORM.factory(
Field('uid', 'integer', requires=[IS_LENGTH(15,15)]),
Field('uaccount','unicode',default=None))
if searchform.accepts(request.vars):
result=__get_payments()
**
I am working on a project where we have a different subsystem whose API
returns a list of certain type of objects.
I want it to be displayed on my form. Can I use SQLForm.grid for this?
Please suggest.
--
---
You received this message because you are subscribed to the Google Groups
hieve this?
Please suggest me any solution.
Thank you.
On Friday, 6 September 2013 20:26:54 UTC+5:30, Gliese 581 g wrote:
>
> **
>
> I am working on a project where we have a different subsystem whose API
> returns a list of certain type of objects.
>
> I want it to be displ
x)
When postback happens due to any sorting or paging action,
*searchform.accepts(request.vars,keepvalues=True)
*fails and no grid gets displayed. Please help me to fix this.
Thank you
On Sunday, 8 September 2013 19:17:03 UTC+5:30, Massimo Di Pierro wrote:
> You cannot unless you first l
e is re-filling the
> temp db with the same data on every request, which is inefficient.
>
> Anthony
>
> On Tuesday, September 10, 2013 12:28:47 AM UTC-4, Gliese 581 g wrote:
>>
>> Hi Massimo,
>> Thanks for suggesting this solution. I am now able to display a gird on
--
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 unsub
I have Apache HTTP server configured on Linux machine. I am sending
requests to it from my Windows machine. I want to check the contents of
incoming request. Where does it stores the data of incoming request? I have
checked it on my Windows machine where it uses
*C:\Users\username\AppData\Local
I am trying to make ajax jsonrpc call to my web service using jQuery as
given below:
$(document).ready(function() {
$("#btnNext,#btnPrevious").click(function() {
var req = {
jsonrpc: "2.0",
method: "nextprevexample",
id: (new Date).getTime()
espondingexample(nextprevindicator)
return exampleid,exampletext
On Thursday, 4 September 2014 10:49:27 UTC+5:30, Anthony wrote:
>
> Have you confirmed that the function is actually getting called? Anything
> in request.body?
>
> Anthony
>
> On Thursday, September 4,
I have two tables - element and example. I want to find element like items
in example table but their status should either be 0 or 2.
I have written a query to fetch records from two tables as given below:
rows=db(('instr(microelementexamplestest.example,microelementstest.element)')
&
I have fetched large number of rows from a database. I am fetching the rows
from database and storing it in a session. Now when I delete a record for
some reasons I do not want to get the entire data back but just delete the
corresponding row from the Rows object. I have the index of deleted rec
r].id)
>
> Keep in mind that will not delete the record from the database -- only
> from the Rows object itself.
>
> Anthony
>
> On Saturday, September 13, 2014 12:12:39 PM UTC-4, Gliese 581 g wrote:
>>
>> I have fetched large number of rows from a database. I am fe
I have a simple controller method where I insert a record in mes table and
return the id of inserted record as given below:
return db.mes.insert(me=metext,locale=localeid)
However it return incorrect id. When I check the id of the record through
MySQL workbench it shows some number greater t
Yes I have auto increment field and I have done manual insertions and deletions
in it. But insert should return latest id irrespective of what I do to the
table.
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://
Please let me know what I have to do to get the id of inserted record.
--
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 y
I have attached the code and the error message. Please help!
--
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 sub
Thank you for your answer.
I am not very interested in importing more dependencies even though I know
those projects you mention are great (I really like Erlang..).
Anyway you gave me an idea that could solve it. Implement a "messaging
system" in web2py by keeping a table with those contents as
hi all,
I'm working on an app that uses forms that can be quite long and it's users
often interrupt their sessions for whatever reason and end up losing the
information already filled. For this and other reasons I wanted to provide
a different behaviour to these forms where each input field upda
es/simple.html
>
> and prompt on page close to save first.
>
> On Wednesday, June 11, 2014 7:43:41 PM UTC-7, Francisco G. T. Ribeiro
> wrote:
>>
>> hi all,
>> I'm working on an app that uses forms that can be quite long and its
>> users often interr
{{product=db().select(db.product.ALL, orderby='')[0]}}
and change your variable names within the view accordingly.
Francisco
On Saturday, 14 June 2014 17:08:51 UTC+1, Ajeigbe Yekeen wrote:
>
>
> Hello,
>
> I would like to build a page with images (and data) that constantly cycles
> through the
if you want 20 tiles in the same page, you can make:
{{products=db().select(db.quotes.ALL, orderby='')[:20]}}
and then wrap your view code in a loop that goes through the all the
selected products.
Francisco
On Sunday, 15 June 2014 03:36:52 UTC+1, Francisco G. T. Ribeiro wrote:
>
I believe there is a small problem one of the examples at jQuery effects
section in the book
( http://www.web2py.com/books/default/chapter/29/11/jquery-and-ajax ).
So, where you see
Hello
World
I believe this does not belong as the author intended .. instead it should
be:
Hello
WorldEnter cod
201 - 224 of 224 matches
Mail list logo