def addTableRow(self, title, data):
        ''' adds a new row of data to the specified table '''
        grid = self.widgetManager.get(WIDGET_NAMES.Table, title)
        grid.addRow(data)