Changeset c27a111 in sasview


Ignore:
Timestamp:
Oct 14, 2011 1:57:31 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
1ec979d
Parents:
978feaa
Message:

fixed generating a none row for excel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansguiframe/src/sans/guiframe/data_processor.py

    r23477c6 rc27a111  
    440440            if label != "": 
    441441                grid_view[label] = [] 
    442                 for row in range(1, self.max_row_touse+1): 
     442                for row in range(1, self.max_row_touse): 
    443443                    value = self.GetCellValue(row=row, col=col) 
    444444                    if value != "": 
     
    751751                    if value.object is None or len(value.object) == 0: 
    752752                        msg = "Row %s , " % str(row) 
    753                         msg += "Column %s doesn't have a view" % str(label) 
     753                        msg += "Column %s is NOT " % str(label) 
     754                        msg += "the results of fits to view..." 
    754755                        #raise ValueError, msg 
    755756                        wx.PostEvent(self.parent.parent, StatusEvent(status=msg,  
     
    761762                                        plottables.Plottable): 
    762763                            msg = "Row %s , " % str(row) 
    763                             msg += "Column %s doesn't have a view" % str(label) 
     764                            msg += "Column %s is NOT " % str(label) 
     765                            msg += "the results of fits to view..." 
    764766                            #raise ValueError, msg 
    765767                            wx.PostEvent(self.parent.parent,  
     
    780782                                if len(grid.selected_cells) != 1: 
    781783                                    msg = "2D View: Please select one data set" 
    782                                     msg += " at a time to view." 
     784                                    msg += " at a time for View Results." 
    783785                                    wx.PostEvent(self.parent.parent,  
    784786                                                 StatusEvent(status=msg, 
     
    795797                                                  group_id=str(group_id), 
    796798                                                  title=title))   
     799                        msg = "Plotting the View Results  completed!" 
     800                        wx.PostEvent( self.parent.parent,  
     801                                      StatusEvent(status=msg))   
    797802                else: 
    798803                    
    799804                    msg = "Row %s , " % str(row) 
    800                     msg += "Column %s doesn't have a view" % str(label) 
     805                    msg += "Column %s is NOT " % str(label) 
     806                    msg += "the results of fits to view..." 
    801807                    #raise ValueError, msg 
    802808                    wx.PostEvent(self.parent.parent,  
     
    866872            wx.PostEvent(self.parent.parent,  
    867873                             NewPlotEvent(plot=new_plot,  
    868                         group_id=str(new_plot.group_id), title =title))     
     874                        group_id=str(new_plot.group_id), title =title))  
     875            msg = "Plotting completed!" 
     876            wx.PostEvent( self.parent.parent,  
     877                                      StatusEvent(status=msg))    
    869878        except: 
    870879             wx.PostEvent(self.parent.parent,  
    871880                             StatusEvent(status=msg, info="error"))  
    872          
     881 
    873882    def layout_grid(self): 
    874883        """ 
Note: See TracChangeset for help on using the changeset viewer.