Search.../

Introduction

MobileValueMixin is a mixin that provides basic properties and event handlers for elements on a mobile app that have values.

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:

let myValue = $w("#MobileValueMixin").value;
javascript | Copy Code

Instead, you can code the following if myMobileElement is an element that "mixes in" MobileValueMixin.

let myValue = $w("#myMobileElement").value;
javascript | Copy Code

Was this helpful?