Tagged Questions
1
vote
2answers
122 views
Binding BOOL value to NSArrayController
I have a tableview bound with array controller.There are two columns in table view,one is string and another one is BOOL.I am getting string values in tableview.For displaying BOOL values in ...
1
vote
0answers
75 views
NSButtonCell when clicked disable other tablecolumn NSButtonCell
I have a NSTableView with two columns; A and B.
In column A and B there is a NSButtonCell (checkbox).
When I check the NSButtonCell checkbox in column A (value = 1) the NSButtonCell checkbox in ...
0
votes
1answer
635 views
NSTableView data source editing
I'm just a beginner in Cocoa developing for Snow Leopard and I have problem with editing values in data array that displayed in NSTableView.
I tried to edit some property of my object in ...
2
votes
1answer
1k views
NSButtonCell in NSTableView: click handling
I set NSButtonCell as a cell type in a Table Column in my NSTableView.
I implemented an IBAction method, but I can't wire it with NSButtonCell in IB - the wire don't want to highlight a button from ...
3
votes
1answer
400 views
How to show button cell (check box) title in table view, using bindings
I am trying a simple application where I have a mutable array of mutable dictionaries, such as -
NSMutableDictionary *sample6 = [[NSMutableDictionary alloc] ...
0
votes
1answer
944 views
NSButtonCell of Check type within NSTableView does not allow to have value changed
I have window with 3 table views (10.7.2, Xcode 4.2).
They are all created in IB and NSButtonCells are connected with outlets.
I created controller class and I filled all three views with some ...
0
votes
1answer
669 views
conditionally adding NSButtonCell to a column of NSTableview and allowing button cell to take action even if row is not allowed to be select
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 ...
0
votes
1answer
727 views
Getting checkboxes to reflect their state in an NSTableColumn
I'm making this program that has an NSTableView with four columns, two of which are make of checkboxes. I'm only trying to get one working right now and I've gotten stuck.
First, here's my relevant ...
2
votes
1answer
1k views
NSButtonCell as Checkbox in a NSTableVIew don't get selected
I have a NSTableVIew for multi-selection purposes with two columns, the first one with a NSButtonCell as checkbox and the other one as a title.
The idea is to check the items to be added afterwords ...
1
vote
3answers
2k views
Getting Custom NSCell with NSButtonCell instance to handle mouse click/mouse events
OK I'm really stumped on this one. I want to make a checkbox with a
NSTextFieldCell combined together. It's important that the checkbox
goes ON if the mouse hits the box, NOT the text. I've ...
1
vote
2answers
1k views
Problems with NSButtonCell action
For some reason the NSButtonCell for my table view is passing the wrong object as a parameter. I am trying to read the tag of the NSButtonCell after it is clicked.
Here is a simplified version of my ...
2
votes
1answer
567 views
Checkbox on table column won't register click
I've a table view to which I add columns dynamically. It must be done this way because I can't predict how many or which columns I will need.
Some columns are checkboxes but I can't click on them ...