Re: [PyKDE] Editable QComboBox in QTable problem ?

2003-03-19 Thread Hans-Peter Jansen
On Wednesday 19 March 2003 17:20, david wrote: > Le mer 19/03/2003 à 15:13, Hans-Peter Jansen a écrit : > > Hi David, > > > > please have a look into the smalltable.py example, and you will see, > > what's wrong. Also reading the docs for QTableItem will help you here. > > > > Pete > > Hello Pete,

Re: [PyKDE] Editable QComboBox in QTable problem ?

2003-03-19 Thread david
Le mer 19/03/2003 à 15:13, Hans-Peter Jansen a écrit : > Hi David, > > please have a look into the smalltable.py example, and you will see, > what's wrong. Also reading the docs for QTableItem will help you here. > > Pete Hello Pete, Thank you for your help. I looked smalltable.py, it's an exam

Re: [PyKDE] Editable QComboBox in QTable problem ?

2003-03-19 Thread Hans-Peter Jansen
Hi David, please have a look into the smalltable.py example, and you will see, what's wrong. Also reading the docs for QTableItem will help you here. Pete ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.gmd.de/mailman/listinfo/pykde

Re: [PyKDE] Editable QComboBox in QTable problem ?

2003-03-19 Thread david
> > I put an editable QComboBox in a cell of QTable with setCellWidget() : > > > > self.combo = QComboBox(self.table) > > self.combo.setEditable(1) > > self.table.setCellWidget(line,col,self.combo) > > > > When I'm writing in comboBox, the first character is in the comboBox, > > and after, characte

Re: [PyKDE] Editable QComboBox in QTable problem ?

2003-03-18 Thread Hans-Peter Jansen
On Monday 17 March 2003 15:23, david wrote: > I put an editable QComboBox in a cell of QTable with setCellWidget() : > > self.combo = QComboBox(self.table) > self.combo.setEditable(1) > self.table.setCellWidget(line,col,self.combo) > > When I'm writing in comboBox, the first character is in the co

[PyKDE] Editable QComboBox in QTable problem ?

2003-03-17 Thread david
Dear all, I put an editable QComboBox in a cell of QTable with setCellWidget() : self.combo = QComboBox(self.table) self.combo.setEditable(1) self.table.setCellWidget(line,col,self.combo) When I'm writing in comboBox, the first character is in the comboBox, and after, characters are in a other c