I am developing a desktop application for 10.5, 10.6. My requirements are as follows:
I am already displaying a tableview with one column. The tableview is disabled and I do not allow the user to select the rows of a tableview. In each row of this column I display a NSTextFieldCell.
Now I want to add one more column that displays NSButtonCell in a row only if some condition is satisfied. User should be able to click on this button and send some action.
If I disable the tableview or if I do not allow the user to select the row of a tableview, The button cell does not take any action. How do I achieve this?
Also, what is the best way to conditionally add a cell to a row?
Thanks in advance.