Lines Matching full:setting

990 …* @author http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-text…
1507 …* Inherit without without calling parent constructor, and setting `Child.prototype.constructor` to…
2618 …* Fired after setting up the Context Menu's default options. These options are a collection which …
2628 …* Fired before setting up the Context Menu's items but after filtering these options by user (`con…
2638 …* Fired after setting up the Context Menu's default options. These options are a collection which …
2649 …* Fired before setting up the Dropdown Menu's items but after filtering these options by user (`dr…
2947 * // setting if prevent scrolling after selection
2969 * // setting if prevent scrolling after selection
3279 * Callback fired before setting range is started.
3287 * Callback fired before setting range is ended.
3490 * Fired after setting range of autofill.
8881 // Setting the hour should keep the time, because the user explicitly
15733 …throw new Error('"rows" setting is no longer supported. do you mean startRows, minRows or maxRows?…
15736 …throw new Error('"cols" setting is no longer supported. do you mean startCols, minCols or maxCols?…
17907 * Set a single setting of the Ghost Table.
17909 * @param {String} name Setting name.
17910 * @param {*} value Setting value.
17936 * Get a single Ghost Table setting.
19497 * Setting `true` or `false` will enable or disable the default row headers (1, 2, 3).
19526 * Setting `true` or `false` will enable or disable the default column headers (A, B, C).
19870 * `false` (to disable completely). Setting to `true` enables the fillHandle plugin.
20309 …* Setting to true enables the search plugin (see [demo](http://docs.handsontable.com/demo-search-f…
20370 * __Note:__ this setting is `false` by default for cells with type `password`.
20445 …* Setting to true enables the debug mode, currently used to test the correctness of the row and co…
21208 …* Setting the `collapsibleColumns` property to `true` will display a "collapse/expand" button in e…
21340 …* Allows setting a custom width of the row headers. You can provide a number or an array of widths…
21349 …* Allows setting a custom height of the column headers. You can provide a number or an array of he…
24261 * @param {Function} setting
24267 value: function hasSetting(setting) {
24268 if (typeof setting === 'function') {
24269 return setting();
24272 return !!setting;
24503 …* Get stretched column width based on stretchH (all or last) setting passed in handsontable instan…
25076 * Get/Set Walkontable instance setting
25094 * Checks if setting exists
26889 throw new Error('A required setting "' + i + '" was not provided');
26924 * Get setting by name
26949 * Checks if setting exists
33525 … columns as defined in first data row, data schema or in the \'columns\' setting.' + 'If you want …
36721 var setting = this.hot.getSettings().autoColumnSize;
36723 if (setting && setting.useHeaders != null) {
36724 this.ghostTable.setSetting('useHeaders', setting.useHeaders);
36886 var setting = this.hot.getSettings().autoColumnSize;
36887 …var samplingRatio = setting && (0, _object.hasOwnProperty)(setting, 'samplingRatio') ? this.hot.ge…
36888 …var allowSampleDuplicates = setting && (0, _object.hasOwnProperty)(setting, 'allowSampleDuplicates…
37550 var setting = this.hot.getSettings().autoRowSize;
37551 …var samplingRatio = setting && (0, _object.hasOwnProperty)(setting, 'samplingRatio') ? this.hot.ge…
37552 …var allowSampleDuplicates = setting && (0, _object.hasOwnProperty)(setting, 'allowSampleDuplicates…
38681 * Get mapped FillHandle setting containing information about
42255 * You can turn it on by setting a `manualColumnFreeze` property to `true`.