How To ? - Forum

Forum Navigation
You need to log in to create posts and topics.

How To ?

Hi @Luishp

I have downloaded this toogle switch from this excellent site https://uiverse.io/, but I am stupid because I do not know how to get the value (0,1 I suppose) of this object.

Can you help me ?

Regards

 

 

Uploaded files:
  • You need to login to have access to uploads.

@phil78 as you are entering HTML code directly, just turn this:

<input class="bauble_input" id="bauble_check" name="bauble" type="checkbox">

Into this:

<input ng-model="$root.checkboxvalue" class="bauble_input" id="bauble_check" name="bauble" type="checkbox">

This way the variable [checkboxvalue] will store the checkbox value (true or false)
Check the attached sample.

Regards.

 

Uploaded files:
  • You need to login to have access to uploads.

@Luishp thanks a lot Luis