Tagged Questions
3
votes
2answers
127 views
wxPython - dynamially update a listctrl depending on input into a textctrl
does anyone of you have an example how to make the following possible:
I have a listctrl that displays > 600 items. Now I need to search in these items for a text the user inputs and update the list ...
3
votes
1answer
218 views
WxPython: deriving wx.ListItem but wx.ListCtrl only returns old class
I've got a small issue with derived classes, namely wx.ListItem with wx.ListCtrl. I succesfully derived wx.ListItem as a MediaItem, the code is not finished but you get the point:
class ...
3
votes
2answers
414 views
How to set and preserve minimal width?
I use some wx.ListCtrl classes in wx.LC_REPORT mode, augmented with ListCtrlAutoWidthMixin.
The problem is: When user double clicks the column divider (to auto resize column), column width is set to ...
2
votes
2answers
111 views
wxPython ListCtrl Help
I'm using a ListCtrl and it is populated with items on the fly, when an item is "Activated"(Double Click/Enter) it calls a function.
def onClick(self, event):
How do I find out which item was ...
2
votes
3answers
234 views
wxPython: Respond to Listctrl change exactly once
I'm working on a form using wxPython where I want want listctrl's list of values to change based on the selection of another listctrl. To do this, I'm using methods linked to the controlling object's ...
2
votes
4answers
966 views
ListCtrl - wxPython / Python
My question is if we can assign/bind some value to a certain item and hide that value(or if we can do the same thing in another way).
Example: Lets say the columns on ListCtrl are "Name" and ...
2
votes
1answer
345 views
Displaying integers in a wxpython listctrl
I have a wxPython ListCtrl with five columns. Four of these hold strings, the last one has integer values. I have been storing these as strings (i.e. '4', '17', etc.). However, now that I have added a ...
1
vote
3answers
265 views
How to pass UTF-8 string from wx.TextCtrl to wx.ListCtrl
If I enter Baltic characters in textctrl and click button test1 I have an error
"InicodeEncodeError: 'ascii' codec can't encode characters in position 0-3:
ordinal not in ...
1
vote
2answers
455 views
wxPython ListCtrl Column Ignores Specific Fields
I'm rewriting this post to clarify some things and provide a full class definition for the Virtual List I'm having trouble with. The class is defined like so:
from wx import ListCtrl, LC_REPORT, ...
1
vote
1answer
456 views
wxPython - Save Items in ListCtrl
My question is if we can save the items on ListCtrl so everytime someone opens the application, the items are there and if the user removes it, it also removes from the configuration.
I know that I ...
1
vote
4answers
1k views
How can I get the width of a wx.ListCtrl and its column name?
I'm working in wx.Python and I want to get the columns of my wx.ListCtrl to auto-resize i.e. to be at minimum the width of the column name and otherwise as wide as the widest element or its column ...
0
votes
2answers
49 views
Highlight a ListItem in a wx.ListCtrl on MouseOver
I have a wxListCtrl that display a table with information (with rows and column fields). Typically the row will be highlighted only when you click it with the mouse button. But I would like to have ...
0
votes
1answer
36 views
Change the font style of one item in a wx python ListCtrl
I am having issues changing the font of a single item in an wx list ctrl. I have 1 row and 3 columns in my ListCtrl. The code below should change the font of the item located at row = 0 col = 0 to ...
0
votes
1answer
206 views
Use arbitrary wx objects as a column in a wx.ListCtrl
I have a wx.ListCtrl that has the wx.LC_REPORT bit set. It has 3 columns. I want the first column to be populated with a check box for each other entry. I tried using the ListCtrl.InsertItem method, ...
0
votes
2answers
142 views
wxpython: How to fill the inside of a checkbox in a listctrl object with a given rgb color?
I have this chart. In this chart I have a bunch of countries. I am trying to create the legends inside a listctrl object by changing the color of a non-functional checkbox.
Is there any wxpython ...
0
votes
3answers
215 views
wxPython: VirtualTreeListCtrl with millions of items
I would like to add 1,000,000+ entries to the root node of a TreeListCtrl. Therefore I would like to make it "virtual", i.e. work just like a virtual ListCtrl so that it's still fast and I can easily ...