
I need to know the column index so that I can use the index to update the underlying table, but the event.column return type, according to the info in the intelli popup, is an “int & str”. Not sure what that means?
What it actually is returning, is the column name as a str. Is there a simple way to get the int index to use with table.setValueAt, or am I going to have to use something dumb like
system.dataset.getColumnHeaders(ds), loop through it and find the index of the header that way?
