Tagged Questions
0
votes
0answers
18 views
Updating NSOutlineView items
I have been trying unsuccessfully to edit and update items in a source List NSOutlineView, I’m not using a treecontroller but datasource and delegate.
My understanding is that ...
1
vote
0answers
42 views
Customize NSOutlineView row editing
I' ve a NSOutlineView configured as SourceList. When I double click on a row this become editable and I want to modify the apparence of that TextField (or NSTextView?). Anyone know how to do that? ...
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
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
0answers
105 views
Issue with selection of NSTableView and NSSearchField
I have a NSTableView, NSOutlineView and NSSearchField. Any change of text in the search field or selection in the NSOutlineView will trigger a reload of data in the tableview. I have connected a data ...
0
votes
1answer
166 views
Why does reloadData work but not reloadItem?
I have a NSOutlineView that works great. If I change the model, the outlineview is updated when I call: [self.myOutlineView reloadData]. However, when I profiled my program it seems that 10% of the ...
0
votes
0answers
129 views
NSOutlineView: multiple-column group rows
I'm trying to build an NSOutlineView listing some items (similar to folders) which can be expanded to show their content (similar to files). Root items would have their rows floating as long as their ...
0
votes
1answer
152 views
How to set NSOutlineView to consider minimal content's widths with autolayout?
I have NSSplitView with NScrollView inside it and view-based NSOutlineView inside NSScrollView, it has e.g. one column. My outline view must be scrollable vertically only and it must consider minimal ...
1
vote
1answer
162 views
view-based NSBrowser?
Now that we have NSTableView and NSOutlineView that can have regular NSView objects as their cells, what about NSBrowser? That is can we use regular NSView objects as cells in NSBrowser?
0
votes
1answer
138 views
NSAttributedString in view-based NSOutlineView rendering as normal string?
I'm trying to add some formatting to the cells in a view-based NSOutlineView. No matter what I try, the text is rendered without any format I specify. This is my current approach:
...
0
votes
1answer
69 views
NSOutlineView cells are offset
I'm trying to show a list in a view based NSOutlineView in an NSPopover. When showing the list, it results in something like this:
That's not what I set up in IB:
I'm using a standard ...
1
vote
1answer
44 views
How to use Two NSOutlineview in one view?
How to use Two NSOutlineview in one view ?
if i am using rowAtpoint() method in one NSoutlineview i m getting proper result, but on another NSoutlineview which is in same view not giving proper ...
0
votes
1answer
148 views
NSTableView and NSOutline selected item blinks when its scrolls using keyboard arrows
When I use view-based NSTableView or NSOutlineView and try to scroll items using keyboard arrows, then selected item blinks each time the selection jumps to the new item (especially when newly ...
0
votes
1answer
290 views
How to create right click Menu in NSOutlineView?
I am new to this technology , I want to display different Context Menu on Right click of Parent Node and Child Node..
1
vote
1answer
80 views
Notification when content changes in NSOutlineView subclass
I'd like to subclass NSOutlineView to show a label in the middle of itself when there is no content yet. Much like the inspectors in XCode:
Obviously I can't use the delegate methods, because I'm ...
0
votes
0answers
85 views
How do I tell when to end 'editing mode' on a NSOutlineView when using a custom view for editing the row
I have a NSOutlineTableView (view based) in which I'm using a custom view for editing the row. The custom view itself owned by a NSViewController (so this way I'm able to keep a single ...
0
votes
0answers
218 views
View Based NSTableView/NSOutlineView and NSToolBar
I have a problem using view based controls such as NSTableView and NSOutlineView. I set up NSToolBar to my application window and then add NSTableView or NSOutlineView, then i adjust position and size ...
0
votes
0answers
165 views
How customize NSOutlineView right-click context menu row selection
I have a contextual menu appears on right-click in my NSOutlineView. When it appears it selects the table row. I want to customize the selection. It's not a usual selection, rather kind of highlighted ...
1
vote
1answer
200 views
NSOutlineView to mimic Photoshop Layers Panel
I have a question about implementing a few specific behaviors in NSTableViews/NSOutlineViews.
WHAT I'M TRYING TO ACHIEVE:
I'm trying to create an NSOutlineView that mimics the behavior of ...
0
votes
0answers
46 views
NSOutlineView not selecting rows, but says it does
When programmatically selecting a row in my view-based NSOutlineView like this,
[outlineView selectRowIndexes:[NSIndexSet indexSetWithIndex:row] byExtendingSelection:NO];
NSLog(@"Sel Row: %ld", ...
1
vote
1answer
101 views
NSOutlineView NSTableRowView Loses Apparent Selection After Editing
I have a view-based outline view (OSX 10.7). Clicking on an item selects it, as usual. Double clicking allows editing of the textfield it contains. However, when I'm done editing the textField, the ...
0
votes
1answer
323 views
Subclass NSTableRowView for NSOutlineView
If you have a tableView and want to use a subclass of NSTableRowView, you can use the delegate function - (NSTableRowView *)tableView:(NSTableView *)tableView rowViewForRow:(NSInteger)row. Any ideas ...
0
votes
1answer
94 views
NSOutlineTableView Crash after last element
I have an NSOutlineTableView that is displaying hierarchical HTML data, loaded from an HTML parser (each HTML tag is an object with attributes and an array of it's children). For some reason, this ...
0
votes
1answer
123 views
NSOutlineView selection parent
I got a NSOutlineView and there are a couple items on it. Each one has 3 children(places, photos and social). They all have the same children. Say the user has selected places, does anyone knows how ...
0
votes
1answer
141 views
What's the best way to control a NSTableView's selection using checkboxes?
For some user interfaces it makes sense to have explicit checkboxes to allow users to select the items in a table. What's the best way to accomplish this using cocoa? In other words, how can I link ...
0
votes
1answer
264 views
Master detail interface with multiple detail table views like Mail.app
I have a Cocoa app with a similar layout like Mail.app:
A source list on the left where the user can select one of multiple entries
A detail table view in the main content area showing a list based ...
2
votes
1answer
243 views
NSOulineView alignment and header cell font
I have specifically three problems with NSOulineView.
1) Header Cells font: I want to reduce the font size just of the header cell. I tried using IB but without success. Unbinding the Table Cell ...
2
votes
1answer
1k views
View-based NSTableView / NSOutlineView and isGroupItem
I have a View-based NSOutlineView bound to a NSTreeController. Everything seems to work correctly until I implement the outlineView:isGroupItem: method in my delegate, then the group header suddenly ...
1
vote
2answers
419 views
rearranging table rows by dragging in Lion
I am having trouble using the new Lion functionality to rearrange rows in my app. I am using outlineView:pasteboardWriterForItem: to store the row indexes so that I can access them later when I ...
0
votes
2answers
481 views
How can I create itunes/finder/mail style table view
I'd like to create the content lists in the style of the Finder window's left pane (similarly in the style Mail/iTunes/etc). Currently my NSTableView/NSOutlineView implementation looks a little basic.
...
4
votes
1answer
761 views
Changing NSTableCellView's objectValue in view-based NSOutlineView does not propagate to dataSource
I use a view-based NSOutlineView to display and select hierarchically structured items for a scientific application.
Each row in the outline column represents an item, signified by an item-specific ...
0
votes
1answer
364 views
Choosing between NSTableView and NSOutlineView
I'd really like to create a table view that is segmented similar to the screen shown ( which is taken from the XCode->Build Phases view ). To be honest, I'm a bit lost on how to start there.
I ...
9
votes
3answers
3k views
Binding view-based NSOutlineView to Core Data
I'm trying to implement the new view-based OutlineView as a source list in my Mac app. I can't get values to display, though, so I made a small test app from the Core Data app template, and can't get ...
0
votes
1answer
704 views
NSOutline/NSTableView source list Lion-style icons
From the Mac OS X HIG:
As with the icons that can be used inside toolbar controls, the system applies various effects to sidebar icons. To help you understand how these effects can change the ...
0
votes
1answer
244 views
NSOutlineView set max column width with its contents
Is it posible to set an NSOutlineView's NSTableColumn max width with its contents?
Thanks in advance.
0
votes
1answer
385 views
NSOutlineView: How to Put a Specific Cell Into Edit Mode? (editColumn Method Not Working as Expected)
I have an NSOutlineView. When I edit a cell in it and hit return, I would like the cell directly below it to go immediately into edit mode.
I thought I would use the controlTextDidEndEditing: ...
0
votes
2answers
630 views
NSImageCell: Set ToolTip
I'm trying to show a tooltip on the mouse hover at a NSImageCell. I've tried setting the property on Interface Builder (both on the NSImageCell and the NSTableColumn that contains it) but it didn't ...
3
votes
2answers
890 views
set NSOutlineView's selection programmatically (and get NSTableView's selection)
I want to set my OutlineView's selection programmatically in another class.
I'm able to acces the instance of NSOutlineView by [[appDelegate outlineViewController] outlineView].
The idea behind ...
1
vote
1answer
589 views
NSImageCell change image problem
I'm working on an app that shows a list of data on an OutlineView. The controller receives notifications that tells it to change the image of the status NSImageCell of a row. The problem is that I ...
2
votes
4answers
2k views
NSTableView & NSOutlineView editing on tab key
My app has an NSOutlineView and an NSTableView, and I'm having the same problem with both. With a row in either selected, pressing the tab key puts the first column into edit mode instead of making ...
0
votes
1answer
787 views
Autoselect, focus and highlight a new NSOutlineView row
This is probably just lack of experience with the NSOutlineView but I can't see a way to do this. I have a NSOutlineView (implemented with the excellent PXSourceList) with an add button that is ...
0
votes
1answer
577 views
NSOutlineView Control HighLight and indentation
In my Outline view, i am using CustomCell, which is nothing but took the code from Cocoa ImageTextCell RefrenceCode with some modification,
Is it possible to change the highlight color for a cell ?
...
1
vote
1answer
519 views
NSOutline View Drag-n-Drop Problem
Dear All,
I am fighting with NSOutline View to perform drag-n-drop within the table since last 2-3 day but couldn't get what i am doing wrong,
This is what i have done so far,
Requirement,
1 -- I ...
1
vote
0answers
105 views
How do I call the group highlighting behavior used in iTunes when dragging into an outline view?
When dragging items into the left panel of iTunes a non-standard highlight is used, see image how can i use this style highlight when dragging into a specific group of section of an outline view?
0
votes
1answer
265 views
NSOutlineView: Hot To Avoid Yellow Border When Dragging Items?
When I drag rows from an NSTableView to another NSOutlineView, the NSOutlineView gets a yellow highlighting border. How do I avoid that?
To be precise, this happens only if I drag the rows from the ...
2
votes
1answer
2k views
Implementing NSOutlineView/NSTableView with different cells (and data types) per row
I'm wondering how one would implement an outline view like the one Xcode 3 is using for the build configuration:
When using an NSOutlineView/NSTableView with bindings and an ...
0
votes
1answer
2k views
Nstableview group style for nsoutlineview
I like the look of the group rows in the nstableview. In apple mail, the group sections like mailboxes and rss with that style too.
Is there an easy way to make a group row or root item in an ...
3
votes
1answer
613 views
Make NSFormatter validate NSTextFieldCell continuously
In Cocoa, I have an NSOutlineView where the cells are NSTextFieldCell. The cell displays values which are strings that are formatted according to certain rules (such as floats or pairs of floats with ...
0
votes
1answer
329 views
Why does [NSOutlineView clickedRow] always return -1?
I have a fairly pedestrian non-editable NSOutlineView setup. In the bindings for the outline view, I have set the Double Click Target binding to my file's owner (MyDocument FWIW) with a selector of ...
7
votes
3answers
3k views
NSTableView and NSOutlineView drag-and-drop
I have an NSTableView and an NSOutlineView, both with their content provided by bindings, that I'd like to have some drag-and-drop functionality:
Drag rows from Table A onto a row of Outline B, ...