Still new to wxpython, but I've been working on a project lately, that has a customized grid with 5 columns and no row labels, that takes, a choice from a database, 2 floats, a number, and another string respectively, so that the two float columns summation will be displayed on the footer. I've been searching on the net, if there is built-in function that is a footer for a grid, but failed. I was thinking of wx.DC, but what if the grid re-sizes, and I'm also confused what grid class to use. Any suggestion or resources, that are of great help?

link|improve this question
When do you want the float summation to be displayed on the footer? when the row is selected or when the mouse is on that row? – Guanidene Jun 28 '11 at 19:18
practically in real time, once the cells are inserted, it should calculate and displayed, whether it's selected or not – kareentinedo Jun 28 '11 at 19:38
I guess what you need is a statusbar widget. zetcode.com/wxpython/widgets/#statusbar – Guanidene Jun 28 '11 at 19:52
that was indeed helpful, but i still need to add three buttons below the footer – kareentinedo Jun 28 '11 at 19:59
You cannot add any widget below the statusbar I guess, but you can customize the statusbar itself... ie add the buttons in the status bar (to the right, say.) – Guanidene Jun 28 '11 at 20:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.