[web2py] Re: Menu links with target attribute

2018-06-09 Thread Rakesh Singh
I have tried to find the cause of this issue, and believe it occurs due to the fact that A is a subclass of DIV. The ```isinstance(link, DIV)``` test then evaluates to True when ```link``` is an object of type A. I could not find an option to change the behaviour of ```isinstance()``` and resort

[web2py] Re: Menu option on We2py 2.16.1-stable doesnt open on cellphones

2018-05-24 Thread mostwanted
I followed Dave S's link to this link https://groups.google.com/forum/m/?utm_source=digest&utm_medium=email#!topic/web2py/j07rLhwFaqA which led me to this link https://groups.google.com/d/msg/web2py/Am138qbZCuo/TCFOMKRqAgAJ where i found my answer, and Sandeep's solution is good too, it works

Re: [web2py] Re: Menu option on We2py 2.16.1-stable doesnt open on cellphones

2018-05-24 Thread Sandeep Patel
Change The default layout.html with this ** than menu will open in cellphone too. Thank sandeep On Fri, May 25, 2018 at 6:23 AM, Dave S wrote: > > > On Thursday, May 24, 2018 at 9:37:58 AM UTC-7, mostwanted wrote: >> >> Hi guys, my menu is not opening on cellphones, i can not access my menu >

[web2py] Re: Menu option on We2py 2.16.1-stable doesnt open on cellphones

2018-05-24 Thread Dave S
On Thursday, May 24, 2018 at 9:37:58 AM UTC-7, mostwanted wrote: > > Hi guys, my menu is not opening on cellphones, i can not access my menu > when i open my website on a cell phone, i am using 2.16.1-stable version. > Is there something wrong with this version or the problem is my application?

[web2py] Re: menu li > a padding in case of button

2017-12-07 Thread 'Annet' via web2py-users
Hi Paolo, Maybe > > .web2py-menu li:nth-of-type(2) {padding:0;} > > Yes, that solves the problem, thank you for your help. Kind regards, Annet -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/

[web2py] Re: menu li > a padding in case of button

2017-12-05 Thread Paolo Caruccio
Maybe .web2py-menu li:nth-of-type(2) {padding:0;} Il giorno martedì 5 dicembre 2017 09:35:32 UTC+1, Annet ha scritto: > > Hi Paolo, > > Thanks for your reply. The problem is that the padding is on the item > not the btn one. > My menu is rendered as follows: > > >href="/init/default/sea

[web2py] Re: menu li > a padding in case of button

2017-12-05 Thread 'Annet' via web2py-users
Hi Paolo, Thanks for your reply. The problem is that the padding is on the item not the btn one. My menu is rendered as follows: class="fa fa-search" Log in >Open account The padding is on the second item which does not have a class I can reference in my css. Removing the paddin

[web2py] Re: menu li > a padding in case of button

2017-12-03 Thread Paolo Caruccio
To remove it, you could try following css rules in an external css file loaded after bootstrap css files .web2py-menu span.btn{padding:0;} Il giorno sabato 2 dicembre 2017 18:47:55 UTC+1, Annet ha scritto: > > I have the following menu: > > response.application_menu = [ > (CAT(I(_class="

[web2py] Re: Menu not working after redirecting to another view

2016-07-01 Thread Anthony
> > > $(document).ready(function() { > $("#dialog-message").dialog({ > modal: true, > buttons: { > Ok: function() { > $( this ).dialog( "close" ); > {{redirect(URL(''ShowData''))}} > } > } > }); > }); > > This i

[web2py] Re: Menu helper and controller

2015-03-20 Thread LoveWeb2py
Try this: routers = dict( BASE = dict( default_application = 'application', default_controller = 'default', default_function = 'index', ), ) On Friday, March 20, 2015 at 2:54:01 PM UTC-4, Gael Princivalle wrote: > > Hello all. > > With an app my URL is my_do

[web2py] Re: menu - what means the 2nd parameter in tuple?

2015-03-17 Thread Mirek Zvolský
>> for styling purposes... ...I'm sorry. I am stupid and cannot read. Dne pondělí 16. března 2015 19:03:37 UTC+1 Leonel Câmara napsal(a): > > No no no. Like I said it's for styling purposes only. If you don't want > the item to be there at all you need to keep doing what you already were > doi

[web2py] Re: menu - what means the 2nd parameter in tuple?

2015-03-16 Thread Leonel Câmara
No no no. Like I said it's for styling purposes only. If you don't want the item to be there at all you need to keep doing what you already were doing: if auth.has_membership('admin'): response.menu.append(...) -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - htt

[web2py] Re: menu - what means the 2nd parameter in tuple?

2015-03-16 Thread Mirek Zvolský
But I cannot make this to work. If I set the parameter False True auth.has_membership(..) not auth.has_membership(..) the item is always accessible:(( Dne pondělí 16. března 2015 18:02:12 UTC+1 Leonel Câmara napsal(a): > > The second parameter is to define whether a given menu item

[web2py] Re: menu - what means the 2nd parameter in tuple?

2015-03-16 Thread Mirek Zvolský
Thank you! So exactly for what I need, like: auth.has_membership('admin'). I made it in that way yet: if auth.has_membership('admin'): response.menu.append(...) But this was a little difficult. Dne pondělí 16. března 2015 18:02:12 UTC+1 Leonel Câmara napsal(a): > > The second parameter is t

[web2py] Re: menu - what means the 2nd parameter in tuple?

2015-03-16 Thread Leonel Câmara
The second parameter is to define whether a given menu item is "active". This means adding an "active" class to it and it's for styling purposes. Example: response.menu = [ (T('Home'), request.controller == 'default' and request.function == 'index', URL('default', 'index'), []), ] -- Res

[web2py] Re: menu creation error

2014-08-13 Thread ocascante
The problem was the alphabetical order of models, thanks for the help El lunes, 11 de agosto de 2014 12:12:08 UTC-6, Leonel Câmara escribió: > > You made a typo: > > for row in db(db.categorias*.id > 0*).select(): > response.menu.append((T(row.nombre))) > > Fix in bold. > > BTW you probably wa

[web2py] Re: menu creation error

2014-08-11 Thread Leonel Câmara
You made a typo: for row in db(db.categorias*.id > 0*).select(): response.menu.append((T(row.nombre))) Fix in bold. BTW you probably want something like this for row in db(db.categorias.id > 0).select(): response.menu.append((T(row.nombre), request.vars.category == row.nombre, URL('def

[web2py] Re: menu creation error

2014-08-11 Thread Massimo Di Pierro
The models are imported in alphabetical order. Could that be the problem? On Monday, 11 August 2014 09:28:37 UTC-5, ocascante wrote: > > Thanks for your help. > I am going to check this using db.py instead my personal model name.db. > > El viernes, 8 de agosto de 2014 16:27:54 UTC-6, Cliff Kachins

[web2py] Re: menu creation error

2014-08-11 Thread ocascante
Thanks for your help. I am going to check this using db.py instead my personal model name.db. El viernes, 8 de agosto de 2014 16:27:54 UTC-6, Cliff Kachinske escribió: > > What are the respective file names? > > Web2py runs the model files in alphabetical order. > > On Friday, August 8, 2014 3:10:

[web2py] Re: menu creation error

2014-08-08 Thread Cliff Kachinske
What are the respective file names? Web2py runs the model files in alphabetical order. On Friday, August 8, 2014 3:10:09 PM UTC-4, ocascante wrote: > > > Hello, > > I am trying to create a menu following a web2py video in youtube: > http://www.youtube.com/watch?v=_4to_44DcJU > > This is my db: >

Re: [web2py] Re: Menu for anonymous and logged

2014-05-19 Thread Fabiano Almeida
Cool Anthony! Thanks!!! Fabiano. 2014-05-19 20:43 GMT-03:00 Anthony : > Sure: > > if auth.user: > [custom menu or append/insert into standard menu] > > if auth.has_membership('some_group'): > [same idea here] > > Anthony > > > On Monday, May 19, 2014 6:29:42 PM UTC-4, Fabiano Almeida w

[web2py] Re: Menu for anonymous and logged

2014-05-19 Thread Anthony
Sure: if auth.user: [custom menu or append/insert into standard menu] if auth.has_membership('some_group'): [same idea here] Anthony On Monday, May 19, 2014 6:29:42 PM UTC-4, Fabiano Almeida wrote: > > Hi all! > > It's possible make differ menu for groups or logged users in > "models/m

[web2py] Re: MENU helper's menu item 2nd argument ignored?

2013-11-18 Thread Leonel Câmara
The second argument does not mean enabled/disabled. It means active/inactive. For instance, if you are visiting the page this menu item leads to you might want to change the CSS style of that menu item. To help you do this, MENU by default adds "web2py-menu-active" when that second argument eva

[web2py] Re: MENU helper and bootstrap

2013-06-09 Thread Alan Etkin
> ... I used data-toggle which means a click to expand the menu and a click > to close it again, which is ok, but different to the built-in menus which > hide when no more mouse-over. > Nice! I would also like to know if there's a simple way for swithching MENU objects to that behavior --

[web2py] Re: MENU helper and bootstrap

2013-06-08 Thread Tim Richardson
Oh, the menu seems to get reborn in layout.html {{=MENU(response.menu, _class='mobile-menu nav' if is_mobile else 'nav',mobile=is_mobile,li_class='dropdown',ul_class='dropdown-menu')}} so I'll try copying that approach -- --- You received this message because you are subscribed to

[web2py] Re: Menu item without URL

2013-04-30 Thread Anthony
Yeah, you'd have to apply your own CSS to get it to look right in that case. Instead, why don't you use the first method: ('Item 3', False, None, [('Subitem1', False, URL(...)), ('Subitem2', False,URL (...))]) That will look and behave properly, but clicking the "Item 3" link won't do anything.

[web2py] Re: Menu item without URL

2013-04-29 Thread Anthony
If you do: ('Item 3', False, None, [('Subitem1', False, URL(...)), ('Subitem2', False,URL (...))]) "Item 3" should be a clickable link, but clicking it won't do anything (it's href will b "#", and it will have an "onclick" handler that does nothing in response to a click). If you don't want it

[web2py] Re: menu not backward compatible.

2013-03-03 Thread Annet
When I comment out the menu, I get the same error on appadmin: Traceback (most recent call last): File "/Users/annet/web2py/gluon/restricted.py", line 212, in restricted exec ccode in environment File "/Users/annet/web2py/applications/init/controllers/appadmin.py"

[web2py] Re: "MENU helper" and "Server-side DOM" work together?

2012-09-12 Thread amphisia pui
Hi Antony, I followed your suggestion and it works. I paste the code snippet in case someone else needs it. {{ smenu = mmenu.serialize(mmenu.data) mmenu = MENU(response.menu, _class='nav' ) lis = smenu.elements('li.we

[web2py] Re: "MENU helper" and "Server-side DOM" work together?

2012-09-11 Thread Massimo Di Pierro
No good reason. The logic can be moved in the constructor but need to be tested to make sure nothing breaks. On Tuesday, 11 September 2012 10:29:02 UTC-5, Anthony wrote: > > Looks like MENU doesn't generate a DOM structure until its .serialize() > method is called. You could do: > > mmenu = mmen

[web2py] Re: "MENU helper" and "Server-side DOM" work together?

2012-09-11 Thread Anthony
Looks like MENU doesn't generate a DOM structure until its .serialize() method is called. You could do: mmenu = mmenu.serialize(mmenu.data) mmenu.elements('a') I'm not sure why it was done this way as opposed to generating the DOM upon initialization. Massimo? Anthony On Tuesday, September 11

[web2py] Re: "MENU helper" and "Server-side DOM" work together?

2012-09-11 Thread Massimo Di Pierro
I added components yet MENU is a little different then other helpers. On Tuesday, 11 September 2012 09:49:59 UTC-5, amphisia pui wrote: > > Hi to all > > I want to use the html helper MENU to have in the page footer a menu > totally exploded without sliding items. > I changed the css classes and

Re: [web2py] Re: menu, mobile phones and tablets

2012-08-21 Thread Massimo Di Pierro
Can you email me the patch? On Tuesday, 21 August 2012 10:59:21 UTC-5, mweissen wrote: > > Proposal: > > In gluon/html.py, line 2200 I have changed from > > def serialize_mobile(self, data, select=None, prefix=''): > if not select: > select = SELECT(**self.attributes) >

Re: [web2py] Re: menu, mobile phones and tablets

2012-08-21 Thread Martin Weissenboeck
Proposal: In gluon/html.py, line 2200 I have changed from def serialize_mobile(self, data, select=None, prefix=''): if not select: select = SELECT(**self.attributes) for item in data: if len(item) <= 4 or item[4] == True: * if item[2]:

[web2py] Re: menu, mobile phones and tablets

2012-08-21 Thread Massimo Di Pierro
Can you elaborate? Is there a problem that need to be solved? On Tuesday, 21 August 2012 09:46:35 UTC-5, szimszon wrote: > > +1 > > https://groups.google.com/d/msg/web2py-developers/FMCF0HTs64A/CJ-PNCaIsuwJ > > 2012. augusztus 21., kedd 15:58:27 UTC+2 időpontban mweissen a következőt > írta: >> >

[web2py] Re: menu, mobile phones and tablets

2012-08-21 Thread szimszon
+1 https://groups.google.com/d/msg/web2py-developers/FMCF0HTs64A/CJ-PNCaIsuwJ 2012. augusztus 21., kedd 15:58:27 UTC+2 időpontban mweissen a következőt írta: > > I have played with some menu details and these are my results > > First try: > > response.menu = [ > (T('Home'), False, URL('defau

[web2py] Re: Menu Items

2012-04-23 Thread Vibhor Purandare
Ya sure,I would like to see the code so that I can learn. On Monday, April 23, 2012 9:56:43 AM UTC+5:30, Vineet wrote: > > I am using a menu based on pure css. > Replaced the superfish menu completely. > If you are interested, I can share the code. > > -- Vineet > > On Monday, April 23, 2012 12:0

[web2py] Re: Menu Items

2012-04-22 Thread Vineet
I am using a menu based on pure css. Replaced the superfish menu completely. If you are interested, I can share the code. -- Vineet On Monday, April 23, 2012 12:07:55 AM UTC+5:30, Vibhor Purandare wrote: > >I want attractive menu like HTML 5 How would i get > that in web2py?

[web2py] Re: menu issues when no subitems

2012-04-13 Thread Massimo Di Pierro
> > This: > (T('Whatever'), False, URL(...wherever...), [empty]), should be (T('Whatever'), False, URL(...wherever...), empty or []),

[web2py] Re: menu problem when importing layout

2012-02-16 Thread Edward Shave
Hi Anthony, In case thodoris isn't around I'm assuming this problem is the same as I ran into when using the layout plugins... Just seems like drop down (sub) menus aren't supported? To see this just upload one into the welcome app. Regards, Ed

[web2py] Re: menu problem when importing layout

2012-02-16 Thread Anthony
Is the problem in all browsers, or just older versions of IE? On Tuesday, November 15, 2011 4:24:23 AM UTC-5, thodoris wrote: > > Hello, > > When i install any layout in my app, i always have the following > problem with the menu. Instead of the menu just expanding and covering > the text bello

[web2py] Re: menu problem when importing layout

2012-02-16 Thread Edward Shave
Has anyone an answer for this yet?

[web2py] Re: =MENU

2011-09-17 Thread Anthony
On Sunday, September 18, 2011 1:15:44 AM UTC-4, JavierQQ wrote: > > background:url(images/menu_bt.gif) > I don't know how it works but I use ('../') with the dots and the > slash The ../ refers to the parent folder of the current folder. So, if the current folder is /static/css, then ../ r

[web2py] Re: Menu based on Boolean table fields.

2011-03-23 Thread annet
Hi Denes, Thanks for your reply and explanation, problem solved. In the controller I have: session.row=db(db.cardfunction.company_id==session.id).select(db.cardfunction.ALL).first() ... so in the view I needed: {{if session.row[_name.lower()]:}} Kind regards, Annet.

[web2py] Re: Menu based on Boolean table fields.

2011-03-22 Thread DenesL
Hi Annet, On Mar 22, 10:08 am, annet wrote: > Thanks for your reply. I had a look at the code, but I am afraid it > doesn't solve my problem. The functions are fields in a table and > depending on their value being true or false they should be rendered > as an or element. > > Given this code in

[web2py] Re: Menu based on Boolean table fields.

2011-03-22 Thread annet
Thanks for your reply. I had a look at the code, but I am afraid it doesn't solve my problem. The functions are fields in a table and depending on their value being true or false they should be rendered as an or element. Given this code in a function: session.id=auth.user.bedrijf_id session.row

[web2py] Re: MENU items with target='_blank'

2010-12-18 Thread mdipierro
Instead of menu = MENU([['name',False,URL('default')]]) do menu = MENU([[A('name',_href=URL('default'),_target="_blank"),False,None]]) On Dec 18, 8:11 pm, Bruno Rocha wrote: > Hi, > > *I am trying to change every A item of MENU object, including > target='_blank' attribute,* > *menu is a '' ta

[web2py] Re: MENU improvements

2010-11-03 Thread mdipierro
Ok, in trunk, this should work: response.menu = [ (T('Home'), False, A('hello',_href=URL(request.application,'default','index'))) ] Please let me know since I did not check it. On Nov 3, 5:52 pm, Martín Mulone wrote: > Or pass an A() instead of a url and you have all the elements. > > 2

Re: [web2py] Re: MENU improvements

2010-11-03 Thread Martín Mulone
Or pass an A() instead of a url and you have all the elements. 2010/11/3 mdipierro > I guess we can modify MENU so that is we pass a fifth argument, it > will be used for _onclick > > On Nov 3, 4:43 pm, "Martin.Mulone" wrote: > > I want to pass to classical menu > > > > response.menu = [ > >

[web2py] Re: MENU improvements

2010-11-03 Thread mdipierro
I guess we can modify MENU so that is we pass a fifth argument, it will be used for _onclick On Nov 3, 4:43 pm, "Martin.Mulone" wrote: > I want to pass to classical menu > > response.menu = [ >     (T('Home'), False, URL(request.application,'default','index'),'', > []) >     ] > > something like

Re: [web2py] Re: MENU issues ...

2010-10-14 Thread Stef Mientki
On 14-10-2010 07:34, mdipierro wrote: >> 3. I love the "append" (and probably other methods) of the Helpers, really >> beautiful !! >> Why does Menu not allow these methods ? > it does. Menu is just a list of tuples > > response.menu=[] > submenu_title=[] > response.menu.append(("Search",False,U

Re: [web2py] Re: MENU issues ...

2010-10-14 Thread Stef Mientki
On 14-10-2010 06:20, Alex wrote: > Hello, > > I can try to answer your first 2 questions: > > 1. It looks like the parameters are (based on the example in the > book): > - 1st parm (Item Text - 'One'): The text you want to show for the > item, so the list item will render with the text of: One >

[web2py] Re: MENU issues ...

2010-10-13 Thread mdipierro
the second argument should really be some condition that determines if that is the current age and returns True/False On Oct 13, 6:06 pm, Stef Mientki wrote: >  On 14-10-2010 00:58, Stef Mientki wrote: > > >  hello, > > > thanks to you all I got the left sidebar menu working, great !! > > > Stil

[web2py] Re: MENU issues ...

2010-10-13 Thread Stef Mientki
On 14-10-2010 00:58, Stef Mientki wrote: > hello, > > thanks to you all I got the left sidebar menu working, great !! > > Still a few questions : > > 1. In chapter 5, it says, each MENU item takes 3 parameters "as described in > chapter 4", > but I can't find the description of these parameters,

[web2py] Re: MENU issues ...

2010-10-13 Thread mdipierro
> 3. I love the "append" (and probably other methods)  of the Helpers, really > beautiful !! > Why does Menu not allow these methods ? it does. Menu is just a list of tuples response.menu=[] submenu_title=[] response.menu.append(("Search",False,URL('index'),submenu_title)) submenu_title.append(

[web2py] Re: MENU issues ...

2010-10-13 Thread Alex
Hello, I can try to answer your first 2 questions: 1. It looks like the parameters are (based on the example in the book): - 1st parm (Item Text - 'One'): The text you want to show for the item, so the list item will render with the text of: One - True | False: True means that web2py will app

[web2py] Re: MENU() redefine defaults for _class, ul_class, li_class

2010-07-22 Thread mdipierro
LOL. We all are somedays On Jul 22, 6:40 pm, Andrew Thompson wrote: >   On 7/22/2010 7:37 PM, Andrew Thompson wrote: > > >  Is it possible to redefine the defaults for  _class, ul_class, and > > li_class on a per app basis? > > Nevermind, I'm an idiot. > > -- > Andrew Thompsonhttp://aktzero.com/

[web2py] Re: Menu Refresh

2010-07-16 Thread Iceberg
One more comment. If your app is simple enough (most are), to use just one controller, it does not have much difference between define your menu in models/menu.py or at the beginning of controllers/default.py, and the latter gives you most flexibility to control what your menu shows up. On Jul12,

[web2py] Re: Menu Refresh

2010-07-12 Thread mdipierro
Hello Casey, the problem is models files (including menu.py) are executed alphabetically before the controller.py. It is possible that your menu is built before the session variables are updated. This is likely the case if the session is modified in the controller. If only a few functions make ch

[web2py] Re: Menu Selected option

2010-04-29 Thread DJ
Thanks Massimo. Yamandu, thanks for your tip. I am using the inbuilt MENU functions for now. -S On Apr 29, 8:30 am, yamandu wrote: > Well, in my app I am using accordion from jQuery plus a session var to > indicate active item and som jQuery code to do the thing in the > template. > It worked f

[web2py] Re: Menu Selected option

2010-04-29 Thread yamandu
Well, in my app I am using accordion from jQuery plus a session var to indicate active item and som jQuery code to do the thing in the template. It worked fine to my case. I tried to figure out the web2py way to do this thought better to do my way. Altough would be better do it simply. On 28 abr,

[web2py] Re: Menu Selected option

2010-04-28 Thread mdipierro
response.menu = [['name',request.function=='item',URL(r=request,f='item')]] the second boolean is the active status {{=MENU(response.menu)}} renders active with a class "li_active" you can use the css to highlight it. On Apr 28, 2:50 pm, DJ wrote: > Hi all, > > There has been some discussion

Re: [web2py] Re: Menu css

2010-03-16 Thread Kuba Kucharski
LOL :D just for u.. -- Kuba On Tue, Mar 16, 2010 at 9:27 PM, mr.freeze wrote: > Seems to be down.  Just me? > > On Mar 16, 2:53 pm, mdipierro wrote: >> I just fond this and it is nice:http://purecssmenu.com/ >> >> It does not mention any license. >> >> On Mar 16, 2:43 pm, "mr.freeze" wrote

Re: [web2py] Re: Menu css

2010-03-16 Thread Johann Spies
On 16 March 2010 21:43, mr.freeze wrote: > Look in base.css . Specifically: > for background color, change the background property on: 'ul.web2py- > menu' > for menu items, set a color on: 'ul.web2py-menu li a' > Thank you, mr Freeze. That helped me immediately. Regards Johann -- "Blesse

[web2py] Re: Menu css

2010-03-16 Thread mr.freeze
Seems to be down. Just me? On Mar 16, 2:53 pm, mdipierro wrote: > I just fond this and it is nice:http://purecssmenu.com/ > > It does not mention any license. > > On Mar 16, 2:43 pm, "mr.freeze" wrote: > > > Look in base.css . Specifically: > > for background color, change the background proper

[web2py] Re: Menu css

2010-03-16 Thread mdipierro
I just fond this and it is nice: http://purecssmenu.com/ It does not mention any license. On Mar 16, 2:43 pm, "mr.freeze" wrote: > Look in base.css . Specifically: > for background color, change the background property on: 'ul.web2py- > menu' > for menu items, set a color on: 'ul.web2py-menu li

[web2py] Re: Menu css

2010-03-16 Thread mdipierro
I just fond this and it is nice: http://purecssmenu.com/ It does not mention any license. On Mar 16, 2:43 pm, "mr.freeze" wrote: > Look in base.css . Specifically: > for background color, change the background property on: 'ul.web2py- > menu' > for menu items, set a color on: 'ul.web2py-menu li

[web2py] Re: Menu css

2010-03-16 Thread mr.freeze
Look in base.css . Specifically: for background color, change the background property on: 'ul.web2py- menu' for menu items, set a color on: 'ul.web2py-menu li a' On Mar 16, 2:27 pm, Johann Spies wrote: > I am struggling to find out exactly how the default web2py menu system > uses the css. > > I

[web2py] Re: Menu css

2010-03-16 Thread mdipierro
No idea. I do not understand it either. On Mar 16, 2:27 pm, Johann Spies wrote: > I am struggling to find out exactly how the default web2py menu system > uses the css. > > I want to change the background colour and the text colour of the > menu. A pointer will be very helpful please. > > Regards

[web2py:/] Re: menu background

2008-10-06 Thread annet
> You can have two apps connect to the same database by using the same db URI > string. In the model of my initial application called b2c I have the following URI string: db=SQLDB('postgres://fitwise:[EMAIL PROTECTED]:5432/fitwise_nl') > For SQLite one of the two should have > SQLDB('sqli