[web2py] Re: glyphicon fonts served as text/html

2013-09-05 Thread k0aun9
Oh, I found the problem. When I uploaded the files, all the hyphens in the file names were converted to underscores automatically. Is it by design or bug? On Friday, September 6, 2013 1:44:08 AM UTC+8, k0aun9 wrote: I'm trying to come up with my own layout.html Instead of using

[web2py] glyphicon fonts served as text/html

2013-09-05 Thread k0aun9
I'm trying to come up with my own layout.html Instead of using web2py_bootstrap.css, I'm using the bootstrap.css (3.0) because I want to learn how things were built up and the differences. I uploaded the glyphicon fonts and svg etc (which comes with bootstrap dist) to /[myapp]/static/fonts/

[web2py] Re: SQLFORM.grid export missing computed fields

2012-10-30 Thread k0aun9
a ticket. massimo On Friday, 19 October 2012 04:33:37 UTC-5, k0aun9 wrote: Hi Guys, I have a grid with two more columns with computed fields using below implementation - links = [{'header':'column1','body':lambda row: function1(row.id)}] It displays as I expected, but when I tried

[web2py] SQLFORM.grid export missing computed fields

2012-10-19 Thread k0aun9
something or it is not supported in grid. Appreciate if someone could point me to the right direction. Regards, k0aun9 --

[web2py] soap service Operation xml not found in WSDL

2012-08-07 Thread k0aun9
Hi, I've been using it web2py for quite a while now and now moving it to the next level. I'm trying to setup a soap service (both client and server) and having some problem. Actually, I'm following a tutorial here http://code.google.com/p/pysimplesoap/wiki/Web2Py When I try to create a

[web2py] Re: Examples for SQLFORM.grid oncreate, onupdate, ondelete

2012-06-27 Thread k0aun9
Maybe you've already found a way but here's for others who stumbled upon this thread from search. lol I believe this should be the way db.define_table('employee', Field('name','string'), Field('department','string') ) inside the controller, def do_something(form): name = form.vars.name