Questions tagged [disclosure]
59 questions
                    
                    19
                    
            votes
                
                3 answers
            
        How do I use the Detail Disclosure button?
I'm new to Xcode and I need to know how to use the Detail Disclosure button that I have added to my table. The round blue arrow button when pressed will redirect the user to another ViewController, and in that ViewController, the data in the…
        
        Lorenz de Guzman
        
- 241
 - 1
 - 3
 - 12
 
                    17
                    
            votes
                
                3 answers
            
        How long should I wait to publicize a vulnerability in a free/open source project?
In my review of free package distributed under the Apache license I found a number of bugs ranging from the obscure code issues to security holes.
I've taken the following steps:
I notified the project lead through private email about this two…
        
        Andrew Dalke
        
- 14,889
 - 4
 - 39
 - 54
 
                    16
                    
            votes
                
                4 answers
            
        How to customize disclosure cell in view-based NSOutlineView
I'm trying to customize the disclosure arrow appearance in my view-based NSOutlineView. I saw that it's recommended to use
- (void)outlineView:(NSOutlineView *)outlineView willDisplayOutlineCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn…
        
        Nava Carmon
        
- 4,523
 - 3
 - 40
 - 74
 
                    6
                    
            votes
                
                1 answer
            
        MKPinannotation detail disclosure button - present new view
FirstViewController.h
#import 
#import 
@interface TransparentToolbar : UIToolbar{
}
@end
@interface AddressAnnotation : NSObject   {
CLLocationCoordinate2D coordinate;
NSString *title;
  NSString…   
        
        Jordan Brown
        
- 638
 - 1
 - 5
 - 14
 
                    5
                    
            votes
                
                3 answers
            
        tableview with checkmark and detail disclosure together
I'm making a tableview with multiple row selected option. So, I used the checkmark accessory type action. I also require to edit/rename the text in the selected row.
Basically, I need to put checkmark (checkbox) on the left side and detail…
        
        Arun
        
- 75
 - 1
 - 7
 
                    5
                    
            votes
                
                2 answers
            
        How can i add a disclosure button to a MKAnnotation?
I want to add a disclosure button to a MKAnnotation to segue to another view.
The button should look like this one:
Image
Here's my .h and .m files.
.h file
//
//  POI.h
//
#import 
#import 
@interface…  
        
        fntlnz
        
- 411
 - 2
 - 6
 - 14
 
                    4
                    
            votes
                
                3 answers
            
        How to close drawer in chakra Ui programmatically
Chakra Ui provides disclosure
  const { isOpen, onOpen, onClose } = useDisclosure();  
and in the documentation this button will close the drawer
they haven't provided…
        
        Jash Jariwala
        
- 95
 - 1
 - 7
 
                    4
                    
            votes
                
                2 answers
            
        Where do I find the "Collapsible Panel" Cocoa control in Interface Builder?
I'm trying to add a collapsible panel to a panel I added in the Interface Builder, similar to the one found in Office 2008 and XCode itself. 
This is the collapsible panel for those that don't know it:
OS X collapsible panel http://grab.by/3Hqv
Any…
        
        Mahmoud Al-Qudsi
        
- 28,357
 - 12
 - 85
 - 125
 
                    3
                    
            votes
                
                1 answer
            
        How to Apply Disclosure only to Certain Group(s)?
I currently have grouping like this:
Code:
Ext.regModel('Contact', {
    fields: ['firstName', 'lastName']
});
var store = new Ext.data.JsonStore({
    model  : 'Contact',
    getGroupString : function(record) {
        //return…
        
        Jeaf Gilbert
        
- 11,495
 - 19
 - 78
 - 105
 
                    2
                    
            votes
                
                1 answer
            
        Sencha Touch: Disclosure on single item
I have a normal list in Sencha Touch.
Now I need to mark a single item in that list as a "disclosure" item.
The functionality should be sth like this:
onItemDisclosure: function(record) {
    if (record.data.type != "link") return false; //not a…
        
        Martin Bories
        
- 1,067
 - 17
 - 37
 
                    2
                    
            votes
                
                6 answers
            
        Is it expected to disclose all the frameworks / open source software used in a project to a client
Taken aback to day when I was confronted about the use of validation code used from the Csla framework. It felt like I was reprimanded for not disclosing the use of the framework to the client. 
Is this not the same as using libraries such as jQuery…
        
        Shaun
        
- 706
 - 6
 - 11
 
                    2
                    
            votes
                
                1 answer
            
        How to get Treeview DisclosureNode to right , in Javafx?
In Javafx the DisclosureNode of Treeview is on left by default. How can I I place the Disclosure Node to Right (float right)..??
Any Help would be appreciated.
        
        Vikas Singh
        
- 175
 - 5
 - 19
 
                    2
                    
            votes
                
                1 answer
            
        Getting coordinates from pin's annotation's disclosure, on tap
i'll try to keep this very simple :
I'm very new to Objective-C (or programming actually) so i'll probably need an explanation more than just an answer.
What i'm trying to do and can't do (yet): 
Getting a pin's coordinate after tapping it's…
        
        Gil Sand
        
- 5,802
 - 5
 - 36
 - 78
 
                    2
                    
            votes
                
                1 answer
            
        How to make a Cocoa Disclosure Triangle
I have most of the code that works
[self.disclosureButton setBezelStyle:NSDisclosureBezelStyle];
[self.disclosureButton setButtonType: NSPushOnPushOffButton];
[self.disclosureButton setTitle:nil];
[self.disclosureButton highlight:NO];
However, when…
        
        joels
        
- 7,249
 - 11
 - 53
 - 94
 
                    2
                    
            votes
                
                1 answer
            
        iphone - table Cell color doesnt apply behind disclosure indicator
I have a table view that has alternate colors as background color for cells.
In addition to that i have added a disclosure indicator accessory.
However, the problem is that the cell background color doesnt seem to apply to the area 'behind' the…
        kevin