[web2py] Re: help please on adding jquery-ui theme to SQLFORM.grid

2011-11-14 Thread tomt
Thanks for the responses, After reading the notes, I dug around and discovered the following list of themes that can be used in layout.html. base black-tie blitzer cupertino dark-hive dot-luv eggplant excite-bike flick hot-sneaks humanity le-frog mint-choc overcast pepper-grinder redmond

[web2py] Re: help please on adding jquery-ui theme to SQLFORM.grid

2011-11-14 Thread Anthony
Yes, those are the pre-built jQuery UI themes (see Gallery tab): http://jqueryui.com/themeroller/. You can also create your own using ThemeRoller. On Monday, November 14, 2011 10:52:40 PM UTC-5, tomt wrote: Thanks for the responses, After reading the notes, I dug around and discovered the

[web2py] Re: help please on adding jquery-ui theme to SQLFORM.grid

2011-11-13 Thread Anthony
CSS files typically go in your app's /static/css folder, and you then have to make sure the CSS file gets linked in the page head (like any other CSS file). An easy way to include the CSS file is to do: response.files.append(URL('static', 'cs/your_theme_file.css')) in the controller action