Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
3answers
272 views

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 ...
4
votes
2answers
852 views

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 ...
3
votes
1answer
64 views

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 : ...
2
votes
1answer
2k views

MKPinannotation detail disclosure button - get directions - call number

FirstViewController.h #import <UIKit/UIKit.h> #import <MapKit/MapKit.h> @interface TransparentToolbar : UIToolbar{ } @end @interface AddressAnnotation : NSObject <MKAnnotation> { ...
2
votes
1answer
1k views

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 ...
2
votes
6answers
198 views

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 ...
1
vote
1answer
191 views

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 ...
1
vote
1answer
178 views

How to resize an extra box with disclosure triangle in Cocoa?

How to resize an extra box with disclosure triangle in Cocoa? - (IBAction)disclosureTriangleClicked:(id)sender { NSWindow *window =[sender window]; NSRect frame = [window frame]; ...
1
vote
1answer
49 views

Does a .NET assembly embed any personally identifiable information?

I was wondering if a .NET assembly contains any traceble information? I refer to any information that might connect an assembly with the computer it was made on, the person who made it, or maybe the ...
1
vote
2answers
108 views

Build an application with some kernel memory disclosure

I'd like to build a C application that I can then exploit to get some confidential information from the kernel memory. The issue is that I don't really understand where to start... I've found that ...
1
vote
1answer
709 views

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]; ...
1
vote
1answer
1k views

Simulate a Detail Disclosure Button press

Does anyone know of a way to simulate pressing a detail disclosure button?
0
votes
1answer
30 views

How to create resize window with multiple disclosure triangle?

I want to create a window like "Finder Get Info" window with multiple disclosure triangle. I want to resize the window dynamically. Any example which explain this behaviour? Any help would be ...
0
votes
1answer
36 views

Disclosing geolocation positions to all users makes an app ineligible for the Apple Store?

I would like to know if the app I'd like to create has any chance to be eligible for the App Store. The app would temporarily store each user's geolocation information on a server and make it ...
0
votes
1answer
395 views

Adding Disclosure Buttons to a Table when using Data.plist

So I've created a table from a data.plist and was trying to figure out how to add a disclosure button at the second level-to-third level table. It would be used to add a UIView "credits" to the ...
0
votes
1answer
143 views

How do I add text to jquery script button?

I have this old jquery script for progressive disclosure: (notice the $(this).text('more...') code changes the button text. <!--for more/less progressive disclosure--> <script > ...
0
votes
1answer
335 views

How to Get a Disclosure Button to Play Nicely With BKSplitView

I have a disclosure button setup in a simple app I am working on that is using BKToolkit. I have hooked up a Disclosure button with Push On Push Off to the toggleCollapse: action in the SplitView. ...
0
votes
2answers
668 views

AdvancedDataGrid Problem (Bug?) — Disclosure Icons in Wrong Column. (Hierarchical data, Flex 3.5)

I've run into a bit of a funny one and thought it was worth posting: I'm using an Advanced Data Grid in a case where I've got to set the data provider at runtime using hierarchical data. The adobe ...
0
votes
2answers
1k views

iphone : SDK disclosure button not response from first TableView to second detail TableView?

How can I pass the first tableview row data to second detail view row I use [cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton]; or cell.accessoryType = ...