Bug #2304
closedHeader Text not workigg right in 3.1.9
0%
Description
Only one column header appears, overlaps with row header.
There is nothing fancy going on here.It's just a tableview with a simple table model.
Files
Updated by Jason H about 11 years ago
- File overlap_error.png overlap_error.png added
Updated by Wim Dumon about 11 years ago
- Status changed from New to Feedback
Hi Jason,
It looks like your browser failed to properly load CSS and image files. These are located in the 'resources' folder in Wt. Can you check your browser debugger's log for any 404 errors? If you fix these, the class will probably behave as expected.
BR,
Wim.
Updated by Jason H about 11 years ago
Very likely true. However the default CSS won't load because I'm using Jython, and when it is running Jython, i.e. http://localhost/app/MyFile.py it tries to resolve the css and resources to http://localhost/app/MyFile.py/resources, which can't ever happen because a file cannot be a directory.
If I set a supplemental stylesheet it will work. But the auto-loaded css won't.
Also for this same Tableview, I don't always get scroll bars, even though I should.
Updated by Koen Deforche about 11 years ago
- Assignee set to Koen Deforche
- Target version set to 3.3.1
Hey,
That probably means your deployement isn't working properly: you need to deploy that also sub paths are handled by the WtServlet; most likely you now have an exact match.
In the web.xml that's done by ending the mapping with '/*' to select everything below that URL
Regards,
koen
Updated by Koen Deforche about 11 years ago
- Status changed from Feedback to Rejected