pombreda / r-orange

Automatically exported from code.google.com/p/r-orange
Other
0 stars 0 forks source link

data entry #166

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
moving to qtableview completely breaks the current data entry widget. 

I have been trying to figure out how to update the Rtable qtwidget to handle 
data editing, but its taking time. 

I am moving your version of table which uses sqlite to the sqlite package 
and recreating the old version of table qtwidget which was just python. 

Original issue reported on code.google.com by anup.parikh on 3 Jun 2010 at 2:23

GoogleCodeExporter commented 9 years ago
yeh, perhaps we should make three kinds of table: one using the model view, one 
using
QTableWidget, one for R data.

Either that or impliment the changes for the model view to duplicate the 
orriginal.

Original comment by kylecovi...@gmail.com on 3 Jun 2010 at 2:33

GoogleCodeExporter commented 9 years ago
the model view is most efficient, but i just spend 2 hours trying to duplicate 
the 
functional. I'll do it after the release. 

There are still errors with the data entry that need to be resolved while using 
original method. 

Original comment by anup.parikh on 3 Jun 2010 at 2:37

GoogleCodeExporter commented 9 years ago
send the errors and I'll fix them.  Efficiency shouldn't be an issue with a 
widget
such as data entry

Original comment by kylecovi...@gmail.com on 3 Jun 2010 at 2:40

GoogleCodeExporter commented 9 years ago
I think I'll revert to the older version of this that has it's own table.  
Using the
GUI classes is too difficult.

We really need to watch out for things like this in the future, when we change 
the
qtWidgets we need to make sure that all of the functionality remains (at least 
within
versions).

I'll take ownership, make the change, then clear this issue.

Original comment by kylecovi...@gmail.com on 3 Jun 2010 at 2:27

GoogleCodeExporter commented 9 years ago
fixed and working normally.  Removed functions to set column attributes and 
classes
(this should be taken care of my Math).  Also fixed some querks about loading 
and
saving.  This uses QTableWidgets so it might take a long time to load data that 
is
very large.

Original comment by kylecovi...@gmail.com on 3 Jun 2010 at 3:25

GoogleCodeExporter commented 9 years ago
Data entry throws error:

Unhandled exception of type AttributeError occured at 2010-06-06 
22:04:39.362000:
Traceback:
  File: widgetSignals.py, line 241 in processSignals
  Code: handler(value)
    File: dataEntry.py, line 85 in processDF
    Code: self.populateTable()
      File: dataEntry.py, line 90 in populateTable
      Code: pythonData = self.savedData.convertToStructuredDict()
        AttributeError: RDataFrame instance has no attribute 
'convertToStructuredDict' 

Original comment by anup.parikh on 7 Jun 2010 at 3:05

GoogleCodeExporter commented 9 years ago
sorry about that.  fixed

Original comment by kylecovi...@gmail.com on 7 Jun 2010 at 2:42