In case anyone else is struggling with popup button cells like I was, I
did finally get this to work - though the solution looks a bit strange
it definitely seems to be giving me the behavior I wanted.
Short version: there are two entities defined (Core Data) and there is a
one-to-many relat
> On 5 Jun 2015, at 9:59 am, Frank D. Engel, Jr. wrote:
>
>
> If I don't bind from there, I'm not sure where else to do it from?
In IB, in -awakeFromNib, in -windowDidLoad: (in a window controller), etc?
Anywhere but in the drawing pathway. I’m not sure whether bindings only makes
single co
On 6/4/2015 19:39, Graham Cox wrote:
On 5 Jun 2015, at 9:19 am, Frank D. Engel, Jr. wrote:
- (void)browser:(NSBrowser *)browser willDisplayCell:(MyBrowserCell *)cell
atRow:(NSInteger)row column:(NSInteger)column
{
// Find the item and set the image.
WhateverObject *c = [browser
> On 5 Jun 2015, at 9:19 am, Frank D. Engel, Jr. wrote:
>
> - (void)browser:(NSBrowser *)browser willDisplayCell:(MyBrowserCell *)cell
> atRow:(NSInteger)row column:(NSInteger)column
> {
> // Find the item and set the image.
> WhateverObject *c = [browser itemAtRo
application.
Sounds very doubtful.
[self controlView] is probably unreliable in your cell - you might want to
check it. But even if it’s correct (being the NSMatrix for the browser column)
invalidating the whole thing is going to be very sub-performant (though should
work).
Note that NSBrowser
or the browser
>> column) invalidating the whole thing is going to be very sub-performant
>> (though should work).
>>
>> Note that NSBrowser, unlike a NSTableView, allocates one cell per row within
>> a NSMatrix - it does not reuse and redisplay a single cell.
>&
might want to
check it. But even if it’s correct (being the NSMatrix for the browser column)
invalidating the whole thing is going to be very sub-performant (though should
work).
Note that NSBrowser, unlike a NSTableView, allocates one cell per row within a
NSMatrix - it does not reuse and
you might want to
check it. But even if it’s correct (being the NSMatrix for the browser column)
invalidating the whole thing is going to be very sub-performant (though should
work).
Note that NSBrowser, unlike a NSTableView, allocates one cell per row within a
NSMatrix - it does not reuse and
ler one:
I have a custom subclass of NSTextFieldCell which I am using to show
an icon in an NSBrowser. The icon image is being generated
dynamically by a method in my subclass and I want it to change more
or less in "real time" as a bound value changes. I have that almost
working, but
Frank D. Engel, Jr. wrote:
Now what I am hoping is the simpler one:
I have a custom subclass of NSTextFieldCell which I am using to show an icon in an
NSBrowser. The icon image is being generated dynamically by a method in my subclass and
I want it to change more or less in "real time&q
> On 4 Jun 2015, at 7:29 am, Frank D. Engel, Jr. wrote:
>
> Now what I am hoping is the simpler one:
>
> I have a custom subclass of NSTextFieldCell which I am using to show an icon
> in an NSBrowser. The icon image is being generated dynamically by a method
> in my s
's since there could be thousands of them and
it would be WAY too much to navigate through without narrowing it down
first (thus the first popup list...)
Now what I am hoping is the simpler one:
I have a custom subclass of NSTextFieldCell which I am using to show an
icon in an NSBrowse
for any confusion!
On 3/7/2015 12:39, Frank D. Engel, Jr. wrote:
I have an NSBrowser class which has at most two columns; it is
populated from a core data store.
If I delete an object from the core data store that is from the first
column of the browser, I can send loadColumnZero to the browser
On May 5, 2014, at 4:58 PM, Paul Wasmund wrote:
> I am using an NSBrowser to display items and my code is based on the
> ComplexBrowser sample from Apple. This uses browser features introduced in
> 10.6 and does not implement a NSMatrix to display columns. The only support I
I am using an NSBrowser to display items and my code is based on the
ComplexBrowser sample from Apple. This uses browser features introduced in 10.6
and does not implement a NSMatrix to display columns. The only support I see
for implementing tooltips is
tion:@selector(_browserClicked:)]; // add to end of
>> awakeFromNib
>> }
>>
>>
>> - (void)_browserClicked:(id)sender
>> {
>> FileSystemBrowserCell *cell = [_browser selectedCell];
>> [cell setEditable:YES];
>> NSIndexPath *path = [_browser selectionIn
emBrowserCell *cell = [_browser selectedCell];
> [cell setEditable:YES];
> NSIndexPath *path = [_browser selectionIndexPath];
> [_browser editItemAtIndexPath:path withEvent:nil select:YES];
> }
>
> - (BOOL)browser:(NSBrowser *)myBrowser shouldEditItem:(id)item
> {
>
_browserClicked:)]; // add to end of
>awakeFromNib
>}
>
>
>- (void)_browserClicked:(id)sender
>{
> FileSystemBrowserCell *cell = [_browser selectedCell];
> [cell setEditable:YES];
> NSIndexPath *path = [_browser selectionIndexPath];
> [_browser
select:YES];
}
- (BOOL)browser:(NSBrowser *)myBrowser shouldEditItem:(id)item
{
return YES;
}
Selecting any cell in the browser should put it into edit mode. Only works for
items in columns other than the first one.
Paul
___
Cocoa-dev
I have an NSBroswer with a series of entries that look up a text blob. If the
blob exists then:
- (BOOL)browser:canDragRowsWithIndexes:inColumn:withEvent: returns YES.
This invokes - (BOOL)browser:writeRowsWithIndexes:inColumn:toPasteboard:
In here I do the following:
NSUInteger changeCount;
B
calling -setTitled: in -awakeFromNib. Surely this is a bug in NSBrowser, and
>> it must have been around since Jaguar or earlier.
>>
>> I also notice that setting "Titled" in Interface Builder causes "Separators"
>> to be checked when you close the
I do hope you're filing bugs on all of this! m.
On Tue, 06 Sep 2011 06:30:33 -0400, Bill Cheeseman said:
>
>The solution is to set the "Titled" checkbox in Interface Builder instead of
>calling -setTitled: in -awakeFromNib. Surely this is a bug in NSBrowser, and
>it
On Sep 5, 2011, at 8:39 AM, Bill Cheeseman wrote:
> Long ago, I found that NSBrowser column titles disappear when the user
> manually scrolls the browser horizontally, or clicks a cell that forces the
> browser to scroll horizontally to show the children of the new selection in
&
Long ago, I found that NSBrowser column titles disappear when the user manually
scrolls the browser horizontally, or clicks a cell that forces the browser to
scroll horizontally to show the children of the new selection in the next
column. Manually resizing the window or any column causes them
Your instantiating your NSBrowser from a nib file. Try over riding
- (id)initWithCoder:(NSCoder *)coder
-raleigh
On Jun 26, 2011, at 4:18 AM, Ari Black wrote:
> On 11-06-26 7:04 AM, Fritz Anderson wrote:
>>
>> On 25 Jun 2011, at 7:05 PM, Ari Black wrote:
>>
>>>
ix = [storyLine matrixInColumn:0]; //<- return nil
matrix = [storyLine matrixInColumn:1]; //<- returns nil
}
First step: Break in -awakeFromNib and verify that browser is not nil.
I've tested this and it's not nil. browser is an outlet I created and
connected with IB. The N
On 26 Jun 2011, at 6:18 AM, Ari Black wrote:
>> Second step: Maybe an NSBrowser doesn't instantiate any matrices until you
>> have responded to browser:numberOfRowsInColumn: with a non-zero value?
>>
>> — F
>
> That's possible, but I
gt; }
First step: Break in -awakeFromNib and verify that browser is not nil.
Second step: Maybe an NSBrowser doesn't instantiate any matrices until you have
responded to browser:numberOfRowsInColumn: with a non-zero value?
— F
___
Hello all,
I'm trying to set the matrix class for an NSBrowser I have in a window.
I have the following in my .h file:
@interface SpecialMatrix : NSMatrix {
}
//- (id)initWithFrame:(NSRect)frameRect mode:(NSMatrixMode)aMode
prototype:(NSCell *)aCell numberOfRows:(NSInteger)nu
HI Mike,
we have implemented the following delegate methods in our class for the Table
view and the respective counter parts for NSBrowser have also been added. I
tested by placing break points on these two methods but still was not able to
see them getting hit when the drag and drop was
Look at the datasource API for each view. They both have methods for writing
and reading to/from the pasteboard.
On 23 Jun 2011, at 09:38, Sandeep Mohan Bhandarkar wrote:
> Hi All,
>
> within my application i have a screen where exists and NSBrowser as well as
> an NSTableViews.
Hi All,
within my application i have a screen where exists and NSBrowser as well as an
NSTableViews. can someone please let me know we can implement dragging items
from the browser to the table view.
any source reference on this would be very helpful.
Thanks in Advance,
Sandeep
I tried by setting break point on objc_exception_throw. Unable to get
anything from the stack trace.
Following is the stack trace.
#0 0x7fff835d70da in objc_exception_throw ()
#1 0x7fff81060c9b in -[NSBrowser _beginColumnDragging] ()
#2 0x7fff8105b04f in -[NSBrowserTableView
On Apr 14, 2011, at 5:16 PM, Naresh Kongara wrote:
> HI All,
>
> I implemented drag and drop in NSBrowser, through which I can drag items from
> other views or windows of the applications. The drag and drop in NSBrowser is
> implemented through its delegate methods.
> Everyt
HI All,
I implemented drag and drop in NSBrowser, through which I can drag items from
other views or windows of the applications. The drag and drop in NSBrowser is
implemented through its delegate methods.
Everything is going fine except I'm getting the following exception while
dro
On Mar 6, 2011, at 4:01 PM, Raleigh Ledet wrote:
> Why not just a headerViewController on NSBrowser proper?
That looks like it might be exactly what I want. I missed it when skimming
NSBrowser/Delegate docs.
Thanks.
--
Scott Ribe
scott_r...@elevated-dev.com
http://www.elevated-dev.com/
(
Why not just a headerViewController on NSBrowser proper?
-raleigh
On Mar 2, 2011, at 10:03 AM, Scott Ribe wrote:
> I need to implement a custom control, which would look very much like an
> NSBrowser with a "header row" above each column which would have 1 or 2
> controls p
I need to implement a custom control, which would look very much like an
NSBrowser with a "header row" above each column which would have 1 or 2
controls per column. It seems like a custom view that embeds an NSBrowser would
be a good starting point. But I'd want my header row
yes i found, thank a lot
Le 17 nov. 10 à 18:27, Dave DeLong a écrit :
NSBrowser is a subclass of NSControl, which happens to have a target
and action mechanism. Have you tried hooking up your browser's
target and action?
Dave
On Nov 17, 2010, at 8:52 AM, Bruno Causse wrote:
NSBrowser is a subclass of NSControl, which happens to have a target and action
mechanism. Have you tried hooking up your browser's target and action?
Dave
On Nov 17, 2010, at 8:52 AM, Bruno Causse wrote:
> i can navigate in a tree through the NSbrowser (mouse or keyboard),
> I wo
hi,
i can navigate in a tree through the NSbrowser (mouse or keyboard),
I would like to view the properties of representedObject during my
browsing.
but I don't find delegate's method (passif delegate). ( kind:
selectedDidChange:)
is it possible?
who have a track? a li
hi,
When I instantiate my browser from XIB file, and when i play with
hierarchy, the column 's titles do not appear.
Only after the resize the window (container), that the conportment of
titles is correct.
have you a solution to fix this?
thank.
_
Hi,
I want to add an icon over scrollers of Each column in NSBrowser.
How can I access the scrollview of each column and how to add action icon to
the scroller in each column.
Can anybody help me out ?
Thanks.
kongara___
Cocoa-dev mailing list
Hi!
NSBrowser leaves an annoying 2-pixel gap between the right edge of a
highlighted browser cell and the vertical column slider. Picture:
http://dl.dropbox.com/u/86388/NSBrowserDrawingGlitch.png
It does go away when the column width is changed live by the user, but
reappears when the cell is
Greetings,
I'm trying to implement an NSBrowser view using the legacy
(10.5) compatible delegate methods (i.e. not the 10.6 "item data
source" methods).
I'd very much like to use the reusesColumns property to recycle
my, rather complex, NSMatrix subclasses. However this
On Jul 26, 2010, at 12:32 PM, mark wrote:
>> On 25/07/2010, at 9:00 AM, mark wrote:
>>
>>> A problem which is driving me spastic:
>>> I have an NSBrowser that allowes multiple selection.
>>> When I double click one of the selected items, all other selec
On 25/07/2010, at 9:00 AM, mark wrote:
A problem which is driving me spastic:
I have an NSBrowser that allowes multiple selection.
When I double click one of the selected items, all other selected
items deselect.
I have set the doubleaction and action methods and correct target.
These are
On 25/07/2010, at 9:00 AM, mark wrote:
> A problem which is driving me spastic:
> I have an NSBrowser that allowes multiple selection.
> When I double click one of the selected items, all other selected items
> deselect.
> I have set the doubleaction and action methods and correc
A problem which is driving me spastic:
I have an NSBrowser that allowes multiple selection.
When I double click one of the selected items, all other selected
items deselect.
I have set the doubleaction and action methods and correct target.
These are called AFTER the deselection.
I have tried
27;m out of luck.
Setting the cellClass to NSTextFieldCell does nothing, the NSBrowser under 10.5
still creates NSBrowserCells. ComplexBrower uses 10.6 delegates methods and
manages to set the cell class to text field cell.
If anyone has any solution it would be great.
Michael
On 8 mai 2010, at 00:5
On May 7, 2010, at 1:01 AM, Micha Fuhrmann wrote:
> Hi everyone,
>
> I've ran out of ideas, I just don't now what's wrong.
>
> I have an NSBrowser Object.
>
> I've set the delegate to another class which implements:
>
> - (BOOL)browser:(NSBrows
r", and i just
> cannot see any difference.
NSTableView has a flag that specifies whether vertical mouse-down movement
selects or drags. I don’t see a similar flag on NSBrowser, though. Have you
compared the browser settings in the inspector in IB
Hi everyone,
I've ran out of ideas, I just don't now what's wrong.
I have an NSBrowser Object.
I've set the delegate to another class which implements:
- (BOOL)browser:(NSBrowser *)browser canDragRowsWithIndexes:(NSIndexSet
*)rowIndexes inColumn:(NSInteger)column withEv
I've determined that what I want to do is not possible with using a
NSTreeController and a NSBrowser. As I stated below, the willDisplayCell
doesn't have the correct parameters to determine the represented object.
Notice the cousin to NSBrowser, NSOutlineView, delegate willDisplayCe
> From: Tony Romano
> Date: March 24, 2010 1:57:04 AM PDT
> To: Cocoa Developers
> Subject: Re: NSTreeController, NSBrowser image setting
>
> Thanks Ken, that was somewhat helpful. However, I am still having trouble
> mapping the arguments passed via(- (void)browser
On Mar 23, 2010, at 9:22 PM, Tony Romano wrote:
> I'm using a NSTreeController and bindings to contain the data for a
> NSBrowser. Data from my objects is being displayed fine. I want to add an
> image to the entries in the browser. From what I gather, I need to im
I'm using a NSTreeController and bindings to contain the data for a NSBrowser.
Data from my objects is being displayed fine. I want to add an image to the
entries in the browser. From what I gather, I need to implement the
willDisplayCell delegate method. The question I have is how do
On Mar 18, 2010, at 9:48 AM, Keary Suska wrote:
> On Mar 18, 2010, at 8:40 AM, Corbin Dunn wrote:
>
>> Aj -- I believe this was a bug fixed in 10.6; maybe 10.5. What OS are you on?
>>
>> The work around is to set it up in awakeFromNib.
>
> Is there any way to tab
Yup you got it. I actually tracked down an Apple doc in regards to that last
evening.
I did go ahead and set it up correctly in awakeFromNib as follows:
// DUE to NSBrowser bug in regards to its implementation
// of acceptsFirstResponder, forcibly load it and then
// make it the first
On Mar 18, 2010, at 8:40 AM, Corbin Dunn wrote:
> Aj -- I believe this was a bug fixed in 10.6; maybe 10.5. What OS are you on?
>
> The work around is to set it up in awakeFromNib.
Is there any way to tab into an NSBrowser in 10.4? It seems that once the
browser loses focus, you
Aj -- I believe this was a bug fixed in 10.6; maybe 10.5. What OS are you on?
The work around is to set it up in awakeFromNib.
corbin
On Mar 18, 2010, at 1:15 AM, Andrew James wrote:
> I have a nib file set up in Interface Builder with a window containing a
> single NSBrowser.
>
>
I have a nib file set up in Interface Builder with a window containing a single
NSBrowser.
I have set the NSBrowser as the window's initialFirstResponder... but for some
reason when the window is displayed the NSBrowser does not receive keyboard
focus and will not receive keyboard focus
or. I'll use NSBrowser's -
> (BOOL)sendsActionOnArrowKeys as an example. In Apple's documentation there's
> no mention of the default.
>
> For my purposes, I want to make sure from release to release that my
> NSBrowser instance does send an action when up/dow
example. In Apple's documentation there's no mention of the default.
For my purposes, I want to make sure from release to release that my NSBrowser
instance does send an action when up/down keys are used. Does that mean as a
Cocoa developer I'm content to always code [ myBrowser
setSend
I'm manually populating an in-memory CD store with a hierarchy of objects and
binding them to a NSBrowser via a NSTreeController. Everything displays fine,
but now I'm trying to get at the underlying managed object; I use a custom
NSBrowserCell that has a checkbox next to the name,
apper. The document's
>> window has a NSBrowser where users can attach files. Before the document is
>> saved for the first time the NSBrower's root is a temporary attachments
>> folder (because the filewrapper doesn't exist). After it's saved that
>>
On Feb 14, 2010, at 3:53 PM, Brad Stone wrote:
> I have an app that saves it's documents in a fileWrapper. The document's
> window has a NSBrowser where users can attach files. Before the document is
> saved for the first time the NSBrower's root is a temporary attach
I have an app that saves it's documents in a fileWrapper. The document's
window has a NSBrowser where users can attach files. Before the document is
saved for the first time the NSBrower's root is a temporary attachments folder
(because the filewrapper doesn't exist). A
17:00 AM
Subject: Re: Confused about setting selection in NSBrowser
On Jan 15, 2010, at 8:07 AM, Keary Suska wrote:
> On Jan 14, 2010, at 9:56 PM, Chris Idou wrote:
>
>> I'm trying to set the selected item in an NSBrowser.
>>
>> I don't want to use setPath: be
On Jan 15, 2010, at 8:07 AM, Keary Suska wrote:
> On Jan 14, 2010, at 9:56 PM, Chris Idou wrote:
>
>> I'm trying to set the selected item in an NSBrowser.
>>
>> I don't want to use setPath: because the items I'm storing in the browser
>> are
On Jan 14, 2010, at 9:56 PM, Chris Idou wrote:
> I'm trying to set the selected item in an NSBrowser.
>
> I don't want to use setPath: because the items I'm storing in the browser are
> not unique, so therefore paths are not unique.
>
> I'm trying t
I'm trying to set the selected item in an NSBrowser.
I don't want to use setPath: because the items I'm storing in the browser are
not unique, so therefore paths are not unique.
I'm trying to use setIndexPath: but when I try the program throws an exception:
HIToolbox
On 21 Sep 2009, at 17:27, Jens Alfke wrote:
(In practice, the HFS+ filesystem does return filenames in
alphabetical order, although I think it's just sorted by Unicode
codepoint,
It's a little more complicated in practice; case-insensitive HFS+
sorts by means of a case-insensitive compari
On Sep 21, 2009, at 8:28 AM, Graham Cox wrote:
Ideally if the list can't display more than, say 50 files at a time
(depends on how big your screen is, etc), then it shouldn't touch
more than 50 files on disk. It has never really managed that
however, and maybe there are fundamental limitat
Hi,
I don't know how helpful to you this could be, but you might want to take a
look at:
http://developer.apple.com/mac/library/documentation/Performance/Conceptual/
FileSystem/FileSystem.html#//apple_ref/doc/uid/1161
You might be able to salvage something from the samples there.
JFD
On 9
On 22/09/2009, at 1:20 AM, Dave DeLong wrote:
Simple tests show that Finder can handle a folder of a million files
in about 2-3 minutes
That's still effectively unusable.
Ideally if the list can't display more than, say 50 files at a time
(depends on how big your screen is, etc), then it
That's a great question. Simple tests show that Finder can handle a
folder of a million files in about 2-3 minutes (more than twice as
fast as what I described in my original email).
Dave
On Sep 21, 2009, at 9:01 AM, Scott Ribe wrote:
For normal-sized directories, this works pretty well.
> For normal-sized directories, this works pretty well. However, in
> my "worst-case" scenario of a flat directory containing 1 million
> files...
Depending on what your purpose here is, you might also benchmark how the
Finder handles increasingly large directories, and set that as the bar to
mat
On Sep 17, 2009, at 2:32 PM, Dave DeLong wrote:
For normal-sized directories, this works pretty well. However, in
my "worst-case" scenario of a flat directory containing 1 million
files, I've found that it takes 34.8 seconds to retrieve a full
directory listing (so I know how many to retu
Hi everyone,
I'm recreating a Finder-like column view fro browsing the disk, and
I've come up against some optimization impasses.
First off, I'm using passive-loading, so that I only load information
regarding an item once I get the browser:willDisplayCell: message.
This works wonderfull
Hello,
I am writing a program that needs to load hierarchical data from an XML
document (that I have loaded into a NSXMLDocument), into a NSBrowser...
I tried modifying the SimpleBrowser? example code to suit my needs, but then
I started wondering if Core Data would be able to do it... I looked
> All NSViews show, when control-clicked, their context menu.
> But not the NSView subclass NSBrowser.
>
> Is this a documented feature or a bug?
This is a bug in the Leopard and earlier versions of AppKit.
For now, you can loop through the matrices using -matrixForColumn: and
set
All NSViews show, when control-clicked, their context menu.
But not the NSView subclass NSBrowser.
Is this a documented feature or a bug?
And what is the recommended workaround?
Kind regards,
Gerriet.
___
Cocoa-dev mailing list (Cocoa-dev
was stretching for the interpretation my conscience would be most
> comfortable with :). I think it's worth filing a Radar requesting
> notifications analogous to NSTableViewSelectionIsChangingNotification and
> NSTableViewSelectionDidChangeNotification.
rdar://6290957
> I did a quick s
On Oct 13, 2008, at 15:44, Quincey Morris wrote:
> Your relationship is from categories to subcategories (and inversely
> from categories to parent categories). So calling the relationship
> "id" makes no sense. IAC, to-many relationship names make more sense
> if they're plural ("categories" in
tification.
I did a quick search for a third-party alternative to NSBrowser, along
the lines of what Rainer Brockerhoff did with RBSplitView. I thought
maybe there would be something at Cocoatech <http://www.cocoatech.com/opensource.php
>. But I haven't found anything.
--And
On Tue, Oct 14, 2008 at 8:12 AM, Andy Lee <[EMAIL PROTECTED]> wrote:
> On Oct 14, 2008, at 12:45 AM, Martin Redington wrote:
>>
>> On Tue, Oct 14, 2008 at 5:25 AM, Andy Lee <[EMAIL PROTECTED]> wrote:
>>>
>>> How about if you leave the matrix class alone and do [myBrowser
>>> setSendsActionOnArrowKe
On Oct 14, 2008, at 12:45 AM, Martin Redington wrote:
On Tue, Oct 14, 2008 at 5:25 AM, Andy Lee <[EMAIL PROTECTED]> wrote:
How about if you leave the matrix class alone and do [myBrowser
setSendsActionOnArrowKeys:YES]? Then give the browser a target and
action,
and in the action method do wh
On Tue, Oct 14, 2008 at 5:25 AM, Andy Lee <[EMAIL PROTECTED]> wrote:
> On Oct 13, 2008, at 11:16 PM, Martin Redington wrote:
>>
>> I've got an NSBrowser, and a secondary view whose value depends on the
>> current selection in the NSBrowser.
>
> [...]
>>
On Oct 13, 2008, at 11:16 PM, Martin Redington wrote:
I've got an NSBrowser, and a secondary view whose value depends on the
current selection in the NSBrowser.
[...]
I seem to be capturing everything so far, except for the case where
the selection is extended by holding down shift and t
I've got an NSBrowser, and a secondary view whose value depends on the
current selection in the NSBrowser.
When only one item is selected, the secondary view shows the path of
the selected item. When multiple items are selected, the secondary
view should show nothing.
I've set up a no
On Oct 13, 2008, at 08:58, Mark Scardigno wrote:
My main goal here is to have core data application that implements an
NSBrowser view;
You've got a number of conceptual problems here, complicated by the
fact that Core Data is not a good place to start if you have no
experience
here is to have core data application that implements an
NSBrowser view; this being a hierarchic view of entities which I call
categories, such as...
Category -> SubCategories -> SubCategories , etc.
The sub categories selected should be based on the previous columns selected
category, obvio
multiple cells redraw issue
mentioned in my other post, that would be fab ...
On Thu, Aug 7, 2008 at 7:59 PM, <[EMAIL PROTECTED]> wrote:
> Message: 4
> Date: Thu, 07 Aug 2008 12:37:28 -0400
> From: Bill Cheeseman <[EMAIL PROTECTED]>
> Subject: Re: -[NSBrowser scroll
Here's another NSBrowser issue (this is on Leopard, BTW)
I'm allowing multiple selection in my NSBrowser.
When my NSBrowser loses focus, the multiple selected cells correctly
change to have a grey background, but when it regains focus, only the
last selected cell gets updated correc
on 2008-08-07 12:06 PM, Martin Redington at
[EMAIL PROTECTED] wrote:
> [apologies if this is a repost - I sent it a while ago, but didn't see
> it appear on the list or in the archives]
I guess you didn't see my reply either.
I reported this as a bug about 4 years ago, but I'm not aware that any
Am Do,07.08.2008 um 18:06 schrieb Martin Redington:
[apologies if this is a repost - I sent it a while ago, but didn't see
it appear on the list or in the archives]
I've got an app with a NSOutlineView and NSBrowser view of the same
data (the file system).
I preserve the user
[apologies if this is a repost - I sent it a while ago, but didn't see
it appear on the list or in the archives]
I've got an app with a NSOutlineView and NSBrowser view of the same
data (the file system).
I preserve the user's selection between when switching between views.
A
on 2008-08-02 8:58 PM, Martin Redington at [EMAIL PROTECTED]
wrote:
> Is the behaviour I'm seeing (not all column made visible if any is
> already visible) the expected behaviour?
I filed a bug about 4 years ago, but nothing came of it.
--
Bill Cheeseman - [EMAIL PROTECTED]
Quechee Software, Qu
Here's another NSBrowser issue ...
I'm allowing multiple selection in my NSBrowser.
When my NSBrowser loses focus, the multiple selected cells correctly
change to have a grey background, but when it regains focus, only the
last selected cell gets updated correctly to the active select
1 - 100 of 113 matches
Mail list logo