On Tuesday, July 12, 2011 1:03:51 PM UTC-4, apple wrote: > > I am using response.files to add my own css to override base.css. I > will now use my own include file instead.
CSS files are supposed to be included in the head of the HTML document, and the component can't do that since the component is loaded into a div within the page after the head has already been loaded. I think you can include CSS files within the body and it will work in many browsers, but technically, I don't think it is valid HTML. > The component is a form. When I submit the form then it reloads via > ajax. When web2py_ajax is loaded this shows the flash messages. The > flash messages do not show up unless explicitly called somewhere. Of > course I can always add the code calling up the flash messages myself > explicitly. When a component action sets response.flash, the message should be flashed when the component content is updated. Can you show some code where this is not working? Anthony