Sha256: 88b3a8e596127cd68d08acdd45979ec614ffa3b96c3ca19ff51e74a0980cb909
Contents?: true
Size: 1.65 KB
Versions: 1
Compression:
Stored size: 1.65 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /** @class Disclosure triangle button. As a subclass of SC.ButtonView, this view takes a lot of the same properties as a button: - isEnabled: whether disclosure triangle is clickable or not - value: YES or NO (where YES implies expanded/open) @extends SC.ButtonView @since SproutCore */ SC.DisclosureView = SC.ButtonView.extend( /** @scope SC.DisclosureView.prototype */ { classNames: ['sc-disclosure-view'], renderDelegateName: 'disclosureRenderDelegate', buttonBehavior: SC.TOGGLE_BEHAVIOR, /** This is the value that will be set when the disclosure triangle is toggled open. */ toggleOnValue: YES, /** The value that will be set when the disclosure triangle is toggled closed. */ toggleOffValue: NO, /** @private */ valueBindingDefault: SC.Binding.bool() , /** Allows toggling of the value with the right and left arrow keys. Extends the behavior inherted from SC.ButtonView. @param evt */ keyDown: function(evt) { if (evt.which === 37 || evt.which === 38) { this.set('value', this.get('toggleOffValue')) ; return YES; } if (evt.which === 39 || evt.which === 40) { this.set('value', this.get('toggleOnValue')) ; return YES; } sc_super(); } });
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sproutcore-1.5.0.rc.1 | lib/frameworks/sproutcore/frameworks/desktop/views/disclosure.js |