-
Notifications
You must be signed in to change notification settings - Fork 18
SDO Widget v7
- status : complete
- version : 7.x
The SDO (Social Dominance Orientation) is a set of questions aimed at measuring the preference of a person for groups and hierarchies.
-
Ho et al. (2015). "The nature of social dominance orientation: Theorizing and measuring preferences for intergroup inequality using the new SDO₇ scale". Journal of Personality and Social Psychology. 109 (6): 1003–1028.
-
Sidanius and Pratto (1999). Social Dominance: An Intergroup Theory of Social Hierarchy and Oppression. Cambridge: Cambridge University Press.
- scale: The type of questions to ask. Values: 'SDO7', 'SDO16', 'SDO7s' (default).
- choices An array of numeric choices. Default (1,2,3,4,5,6,7).
// Option 1: Manual append in page.
// Append a new SDO widget to an element ID "root" (must exist).
// The optional scale 'SDA16' is selected.
// A reference is returned and stored in variable sdo.
var sdo = node.widgets.append('SDO', 'root', { scale: 'SDO16' });
// Get current values.
sdo.getValues();
// Option 2: Widget Step.
// The optional scale 'SDA16' is selected.
stager.extendStep('gm', {
widget: 'SDO',
options: {
scale: 'SDO16'
}
});
Go back to the wiki Home.
Copyright (C) 2021 Stefano Balietti
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.