Search.../

Introduction

This mixin provides functions for disabling and enabling elements. When an element is enabled, its enabled property is set to true. When an element is disabled, its enabled property is set to false.

About Mixins

Mixins provide functionality that other elements can inherit and use.

Mixins are not elements. You cannot add mixins to a page in the Editor like other $w elements, and mixins are not meant to be used directly in your code.

For example, you would not write code like this, because it is out of context:

$w("#DisabledMixin").disable();
javascript | Copy Code

Instead, you can code the following if myElement is an element that can be disabled and
"mixes in" DisabledMixin.

$w("#myElement").disable();
javascript | Copy Code

Was this helpful?