An Apple object that displays data for a set of related records, with rows representing individual records and columns representing the attributes of those records.

learn more… | top users | synonyms

1
vote
0answers
147 views

Using Cocoa Auto-Layout inside a view based NSTableView

My goal is to create a table view that shows short, but variable length and multi-line, messages with a picture (like a list of tweets for example). I have decided to try using Auto-Layout for the ...
2
votes
1answer
56 views

checkbox at the center of a NScheckboxcell

I am unable to center a checkbox inside a checkbox cell. Tried programmatically and over IB but without luck. To reproduce add a NSTableView and in this add a NSCheckboxCell. edit the text of the ...
1
vote
1answer
60 views

NSTableView notification when column resizing has finished?

With an NSTableview I can subscribe to the NSTableViewColumnDidResizeNotification to get events of a column being resized: [[NSNotificationCenter defaultCenter] addObserver: self ...
0
votes
1answer
66 views

Notification for Datepicker cell

I have to populate the nstableview with values from data base based on the date and time which i select from the date picker. When i select a date and time from the 'To date' date picker, the table ...
0
votes
0answers
31 views

TableView protocol method is not called for default edit string selection

I have a tableView that holds 4 character names. When a user wants to add their own event name by pressing the add button, I have a simple method that adds the default name @"Name" to the array of ...
0
votes
1answer
105 views

Sorting order in NSTableView

I have a list of data which I am able to sort by clicking on the column header. The only problem is that it displays like: 10A 11A 12A 1A 2A 3A etc... Where ideally, I would like it to be sorted ...
0
votes
0answers
12 views

How can I store the scroll information for an NSTextView that is a part of a custom NSTableCellView?

In Interface Builder I have a view containing an scrollable view-based NSTableView which uses a custom view for its rows, and the custom view contains an NSTextView that is also scrollable. This is ...
2
votes
1answer
54 views

strike through a selected row in NSTableView

I am new to mac app.In my application i have booked history tableview.when the user click on "withdraw" button,I want to strike through the selected row of the tableview.And I am getting tableview ...
0
votes
0answers
41 views

nextKeyView is not working

I have developed an application,which has one tableview and 4 textfields. When I run the app,the control is not going orderwise by giving TAB. For that I set initialResponder as tableView,then ...
0
votes
0answers
55 views

notification from nstextfield to nstableview

I have a textual Date picker. After the date is getting selected, my nstableview has to get loaded with values. How should i use notification to achieve this? I tried with, ...
0
votes
0answers
63 views

How to make NSTableView not reuse TableCellViews

I would like my view-based-NSTableview to not reuse previously generated TableCellViews that are scrolled out of scope. I figure that this would be possible with UITableView by overwriting ...
0
votes
1answer
44 views

How to disable unselect row in NSOutlineView

I have NSOutlineView and I don't know how to disable unselect row in it. It's problem when I click into NSOutlineView where isn't any cell, selected row is unselected. Is there any way, how to keep ...
0
votes
1answer
72 views

mouseOver for NSTableView

I have NSTableView in my application and i have added the hovering effect for the rows by using HoverTableDemo. I can get the hovering effect only for one row in my table. It is not apply for the ...
0
votes
0answers
52 views

NSTableView with MouseOver

I have NSTableView in one class. And i have implemented TrackingArea,mouseEntered,mouseExited,drawBackgroundInRect,drawSelectionInRect in HoverTableCellView class which is subclass of NSTableRowView. ...
0
votes
1answer
120 views

view-based NSTableView from external Nib, Subviews are not intialized

i try to get my head around view-based NSTableViews on OS X. My Problem is that in the loaded view cell (NSView subclass) the subviews are not initialized when i try to assign the values in my ...
0
votes
1answer
42 views

NSImage from Texture Atlas

I want to build a LevelEditor and would need the sprites (their images) stored in a Texture Atlas of cocos2d in a NSTableView. Any idea how one could approach that?
0
votes
1answer
83 views

How do I allow my NSTableView delegate/datasource handle copy/paste/etc

I have an NSTableView where I'd like to be able to highlight 1 or more rows, and then hit the delete key to delete them, or hit Cmd+C to copy them to the pasteboard. I've found a suggestion to ...
2
votes
2answers
63 views

unable to edit tablecell in NSTableView

i have a NSMutableArray filled with NSMutableDictionaries. all this data is shown in a NSTableView. problem is when i try to edit a cell. my tableview is bound to my class with the datasource ...
0
votes
0answers
34 views

NSOutlineView or TableView - should I cache custom row views

I'm providing custom row views in the datasource for an NSOutlineView. Things work fine when I simply return a newly created row view when this method is called, but not so well when I cache the ...
0
votes
1answer
81 views

Bind NSTableColumn to NSArrayController programmatically

How can i bind a NSTableViewColumn to an NSArrayController programmatically? i have a table with 2 columns that are already bound to the array controller. but i am adding new columns at Runtime, and ...
0
votes
1answer
206 views

NSPopupButton in view based NSTableView: getting bindings to work

Problem Description I'm trying to achieve something that should be simple and fairly common: having a bindings populated NSPopupButton inside bindings populated NSTableView. Apple describes this for ...
1
vote
1answer
55 views

Having Draggable NSTabViewItem

is it possible to provide draggable NSTabViewItem, Basically what i want, if i down L Button on the label of NSTabViewITem and Move, i should allow to drag the TabView item, I want to do it for ...
0
votes
0answers
84 views

how to get NSPopOver on clicking of each row in NSTableView

I have an NSTableView and I am able to place an NSPopover over the tableview by using this code: NSButton *targetButton=(NSButton *)sender; NSRectEdge positionOfPopOver=NSMaxXEdge; ...
0
votes
0answers
65 views

How to get NSPopOver while placing mouse on each row of NSTableView

In NSTableView , when ever mouse over's(with out any clicking) on any particular row then NSPopOver should come up to the corresponding row. Would any one please send solution for this? Thanks in ...
0
votes
1answer
70 views

Bind array of dictionaries to nstableview

----EDITED---- My situation: I have a cell-based NSTableView. In this tableview there are 3 NSColums, 1 is a image box, one is a text box and the third is a checkbox. I have an array controller, ...
1
vote
1answer
95 views

Set checkbox inside NSTableView to “YES”

I have an NSTableView with a checkbox column and an NSArrayController. The NSTableView is bound to the NSArrayController to show its content. The checkbox column is bound to ...
2
votes
1answer
164 views

bind NSTableViewColumn programmatically

how can I programmatically bind a NSTableViewColumn to a NSArray.arrangedObjects key? I know how to do it in IB but was not able to find how its done programmatically. The code is adding new columns ...
1
vote
0answers
29 views

NSTableView will not compress

I'm seeing kind of a weird bug with NSTableView/NSOutlineView and auto layout. When I add an NSOutlineView to my nib and run the app, it will get bigger as expected from the given constraints, but it ...
0
votes
0answers
66 views

X-Code OS/X: How to display results of a core data fetch request in a table view

I perform a fetch request on a managed object context that is written into an array. The fetch itself works well and the array is filled correctly. However, as I try to display the array contents in a ...
1
vote
1answer
88 views

Can't make NSTableView editable via click

I'm trying to make a simple NSTableView (text only) where the cell views can be clicked upon to edit the text. All the tutorials and related questions here suggest that this is the automatic ...
4
votes
2answers
210 views

Populate NSTableView with unknown number of columns

I have a NSTableview and a button. NSTableview has a unknown number of columns. The first column has a image well and 2 text boxes, the others (again, unknown number) are normal textbox columns. ...
1
vote
2answers
197 views

NSArrayController in entity-mode not updating after NSTableView with content-binding has been edited

I have an NSArrayController configured with mode 'Entity' that contains Core-Data-Entities of the type 'Person' and 'Prepares Content' selected. All other properties are the default-ones. As expected, ...
1
vote
2answers
80 views

Attending to each row of NSTableview to change image on Click-

I'm trying to add this example's ImageAndTextCell.h class to my project. I have added it successfully. It looks something like below On row click i get the selected index and on IBAction I need to ...
2
votes
1answer
145 views

Add checkboxcell programmatically to NSTableView

i am using the following code to add cells to a NSTableView. But this is adding textboxcells. i would need to add CheckboxCells instead. Could somebody please tell me how i can do that? thanks! ...
7
votes
2answers
220 views

Double-click editing of NSTableView columns headers

Is it possible to change the names of NSTableView columns by double clicking on the columns headers? Any suggestions on the best way to do this. I am trying: Set the double action of the table view ...
0
votes
0answers
40 views

How to keep group and item NSTableViews in sync?

I'm working on an app for which I'd like to do something very similar to the problem proposed in this question: How to add row-span in view-based NSTableView? The second answer intrigues me as a ...
0
votes
1answer
54 views

Delete column in nstableview that has content

I have a tableview with one textboxcolumn and 7 checkbox columns. This table will eventually be filled with data, and at some later point i have to remove one of the columns somewhere in the middle. ...
0
votes
0answers
95 views

Add NSButton to Array and NSTableView

I am trying to add a Checkbox to my NSTableView. The arraycontroller lives in the App Delegate. And is being populated by this method. I know I should add [self addSubview:cb]; but I don't know how ...
0
votes
0answers
34 views

Does an entire NSTableView redraws when we change the drawing attributes of one row?

I am using an NSTableView in my application and when the user clicks a row I use core Animation to highlight that row. The problem is that if I draw the shadow of row upwards it is drawn correctly but ...
0
votes
0answers
41 views

How do i get more than 2 columns i NSTableView in Xcode 4?

How do i get more than 2 columns i NSTableView in Xcode 4, both programmatically and through the Interface Builder. I cant seem to find any information on it.. Edit: I found the way in Interface ...
0
votes
1answer
236 views

add columns to a table based on core data readout in specific order

The situation: there are two tables, a main table and a secondary table. the main table is connected to a core data database. i have set up the core data and the main table just like i wanted it.. ...
-4
votes
2answers
175 views

Adding rows in a NSTableView?

I have a tableView and two buttons. One to add a row, and one to remove a row(selected). How would I add a row of textbox cells? Also, how would i remove the selected row? Would it be possible ...
0
votes
0answers
53 views

Striking through a row in a table view in cocoa

I want to strike out a row in a table view . But this is not working. -(void)awakeFromNib { if(userOwnBookingDataSource == nil) userOwnBookingDataSource = [[NSMutableArray alloc]init]; ...
1
vote
0answers
25 views

How to get editedColumn & editedRow on a view based NSTableView

I want to know the current column and row that it is being edited on a view based NSTableView. The editedColumn & editedRow properties both return -1. Thank you.
2
votes
1answer
114 views

Custom background image on NSTableViewCell

I have a view based tableview with a custom cell with a bunch of labels and an image on it. I want to add a background image to each cell. First I tried adding an imageview to the cell but that covers ...
1
vote
1answer
76 views

secure textfield in nstableview

first of all lets say that i searched quite a bit for an answer to this and wasnt able to find one. i have a nstableview, with 5 columns, all with text field cells. one of these columns is a password ...
0
votes
2answers
49 views

striking out a data on the table view in cocoa

I have a set of values in table view. I need to delete/cancel a row. I need to strike out that row intimating the user that it has been cancelled. How would i draw a line on the data of the row/ ...
0
votes
0answers
61 views

Cocoa: custom NSCell not respond double click action

I focus on a cocoa app supported on 10.6, and I use cell-based NSTableView. I custom the NSCell so that it can display image and text. The Problem here is : when I set the doubleClickAction to the ...
0
votes
0answers
91 views

How can i load more sorted data in NSTableView when clicked on column header for sorting that column?

I have a large sqlite database table with 5 columns datatime, name, age, address and a primary key the.The older data at the top and more recent one at the bottom. I am showing this records in a ...
0
votes
0answers
15 views

Connecting 2 NSTableViews

I have a NSTableView with names in it which populates text fields with their personal details. I am working on creating my own patient management system so I also want each individual person entity ...

1 2 3 4 5 21