Tagged Questions
The nstablecolumn tag has no wiki summary.
3
votes
1answer
590 views
How to bind data to a NSTableView from a NSDictionary?
Does anybody knows how to fill up a NSTableView using binding values from a NSDictionary?
Thanks in advance.
3
votes
2answers
1k views
Sorting NSTableColumn contents
I have a problem with sorting NSTableColumn contents. In my NSTableView there are three columns: File, Size, Path. The contents are stored in NSMutableArray. Each object in this array is a ...
2
votes
2answers
70 views
NSTableView visual issue
Can someone tell me what might cause this white rectangle in the column to appear? Thanks.
Thanks!
EDIT: If i resize that table column it goes away.
2
votes
1answer
137 views
Problem retrieving NSCell data via [NSTableColumn dataCellForRow]
I am trying to retrieve a specific NSCell data from an NSTableView through [NSTableColumn dataCellForRow] but every time it shows different value for same row and same column. The data source remains ...
2
votes
1answer
387 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 ...
1
vote
1answer
30 views
JTable - why doesn't it keep the TableColumns after adding a row?
I'm using a JTable :
public class MyPanel extends JPanel {
public MyPanel () {
init()
}
init () {
DataModel model = new DataModel();
JTable table = new JTable (model);
TableColumnModel tcm = ...
1
vote
1answer
36 views
Code equivalent for size property in Interface Builder
I'm creating some NSTableColumns dynamically and they appear too tall in the table. In the Interface Builder there is a general setting to adjust the object size (mini, small, regular). Is there any ...
1
vote
0answers
98 views
Autosave of programmatically created NSTableColumn in NSTableView?
I have an NSTableView created in Interface Builder with some columns. I've set the tableview to autosave its settings (I set the autosave name in the Attributes Inspector and checked Column ...
1
vote
1answer
38 views
Limiting the text length in a cell in NSTableView column
I have a NSTableView with 2 columns. I do have code to enter text in the cells for each row.
Is there a way to limit the number of characters entry in the cell say max upto 10?
1
vote
1answer
253 views
How to get NSFormatter subclass to work with NSTableColumn sort key and selector?
My setup:
I have a sqlite database from which I populate a NSMutableArray of NSDictionary objects this is the DataSource for my NSTableView.
One of the columns holds "time", the time is a float ...
1
vote
1answer
484 views
How to auto resize table column when double clicking on Cocoa?
I want to auto resize table column to its content width when double clicking its header (resize cursor is showing), like on iTunes.
Anyone know how to do it ?
Thanks in advance
1
vote
1answer
810 views
Problem naming NSTableColumn
I'm trying to create a column with an empty string as the identifier but Cocoa seems to replace the empty string with the word "Field" every time I try to create the column. How do you go around this?
...
1
vote
1answer
57 views
nstableview + cannot show partial file names
I am using Table View Control. In the control, I show File/Folders details, if I reduce the size of file/folder name column, it does not show partial file/folder name (whatever characters can be shown ...
1
vote
1answer
332 views
Text colors in an NSTableColumn on highlight
I've got an column of cells in an NSTableView that get their text color from the app's preference plist. I want to set the text color to white when highlighted, but have been unable to figure out a ...
0
votes
0answers
25 views
NSTableView auto expand last column
I have an NSTableView with three columns. The last column is a file system path and I would like to to be able to auto expand to ensure the full text is always visible. I have set the 'column sizing' ...
0
votes
1answer
31 views
What are all the things you can bind to in a NSTableColumn of NSPopupButtonCell?
There are quite a few things you can bind to in a NSTableColumn filled with NSPopupButtonCell, I tried looking around for explanations but couldn't seem to find any.
What are each of the binding ...
0
votes
1answer
33 views
Getting object info in willDisplayCell when NSTableView is using bindings
I have a table that's using bindings to get table data. I'm also using willDisplayCell to customize the specific cell when it's being displayed. My question is, how do I get the value of the cell ...
0
votes
2answers
110 views
NSTableView selectable but not editable
Trying to get an NSTableView in IB to be selectable but not editable. But de-selecting "Editable" for a column also removes the selecting capability.
Can someone tell me where I should insert this ...
0
votes
2answers
97 views
How to set second column text of NSTableView?
I've encountered a problem while creating an NSTableView with 2 columns.
How do you set the value of the a row's corresponding column?
I would like to have colText to be in the row's column, but it ...
0
votes
0answers
34 views
How to fit 2 NSArrayController into one NSTableview?
I having problem binding columns of an NSTableview with 2 different NSArrayController.
I have an NSArrayController that keeps Purchase entity with attributes like purchaseCode - purchaseDate - ...
0
votes
1answer
80 views
NSMatrix on NSTableColumn
Is it possible to set an NSMatrix as the cell of a NSTableColumn?. If possible, how should I do it?
Thanks in advance.
0
votes
1answer
274 views
How do you Sort Bound Data in NSTableColumn using InterfaceBuilder binding?
Sorting Bound Data in NSTableColumn using IB binding.
Keys: NSTableColumn , sorting, NSArrayController, Content Set
A contentSet serves like a data source for a TableColumn
This deals with a ...
0
votes
1answer
99 views
One of Two Bound Tableviews Not Updated for Changes in Other Table
I have an OS X app that uses a splitview with two embeded NSTableViews. Changing a value in one table view should change a related value in the second but this does not happen.
It uses CoreData using ...
0
votes
1answer
534 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 ...
0
votes
1answer
85 views
How are the new taller table header rows with extra sorting functionality in iTunes implemented?
In iTunes 10 Apple switched to a taller table header with a slightly different visual appearance, where the column dividers don't reach the top of the row, and certain cells have extended sorting ...
0
votes
1answer
314 views
NSTableColumn auto resize only the first column
I have an NSTableView with 4 columns. I want to change the auto resizing properties of the first NSTableColumn. If the user resizes the app, only the first column is allowed to change his width. My ...
0
votes
1answer
195 views
NSTableColumn binding using Collection Operators like @sum
Mac OS X. CoreData app. NSTableView controlled by NSArrayController bound to managed object context for the Country entity. The Country entity has a 'name' attribute and a to-many relationship, ...
0
votes
1answer
371 views
How to disable sorting in NSTableVIew?
I have a an NSTableView when ever I click on a specific header column the data in the table get reversed or sort upside down. I have checked NSTableView as well as NSTableColumn but couldn't find any ...
0
votes
1answer
363 views
How to refresh an NSTableVIew when you populate the NSMutableArray (bind) associated with it
Hello there
I just want to ask that I tried to bind my NSArraycontroller to an NSMutableArray, the array holds objects of type "iData" (its a custom class). The class further contains some ...
0
votes
1answer
176 views
How to set indicator image on column with multiple sort descriptors?
NSDisableScreenUpdates();
[self.productsArrayController setFetchPredicate:predicate];
[self.productsArrayController setSortDescriptors:sortDescriptors];
[self.productsArrayController ...
0
votes
1answer
596 views
Core Data Image Won't Load Into NSTableView Image Cell
In my code I am storing an image into my Core Data model (works fine). If I set up my view to have an NSImageView and bind its Data to Controller Key: selection and modelKeyPath: myImagePath, it ...
0
votes
1answer
121 views
Have more than one NSTableView with different Content - not displays data
I've two TableViews (one SourceList and one Normal TableView). I'm not using ArrayControllers, just using:
- (id)tableView:(NSTableView *)aTableView
objectValueForTableColumn:(NSTableColumn ...
0
votes
1answer
543 views
Binding to NSTextField Cell not working, edited value resets to default
I'm working on a Core Data document application that dynamically creates NSTableColumns. The data cell type may be a checkbox, slider, etc. Programmatically binding to all cell types works, except for ...
0
votes
0answers
368 views
Different cells in NSTableView together with bindings
im working on a nstableview that contains information for some properties that are dynamicly created. Each row contains some cells that are common (name for example), but in one column they have ...
0
votes
1answer
2k views
NSTableView with multiple columns
What is an easy way to set up my NSTableView with multiple columns to only display certain data in one column. I have the IBOutlets set up, but I don't know where to go from there.
0
votes
2answers
264 views
Why are my images in my NSTableView faded out?
To start, there's an NSArrayController ("Servers") whose content is an array of "server" objects.
I also have an NSTableView with a column. The column is bound to Server's "arrangedObjects.status" ...