Note that there are some explanatory texts on larger screens.

plurals
  1. POAngularJS & jQuery Mobile range slider won't update model
    text
    copied!<p>This is my jQueryMobile Page with AngularJS:</p> <pre><code>&lt;div data-role="page" id="page1"&gt; &lt;div data-role="header"&gt;&lt;h1&gt;Chart&lt;/h1&gt;&lt;/div&gt; &lt;div data-role="content"&gt; &lt;div id="plotChart" class="myChart"&gt;&lt;/div&gt; &lt;form&gt; &lt;input type="range" value="0" min="-10" max="10" ng-init="0" ng-model="value1" ng-change="update()"/&gt; &lt;input type="range" value="0" min="-10" max="10" ng-init="0" ng-model="value2" ng-change="update()"/&gt; &lt;input type="range" value="0" min="-10" max="10" ng-init="0" ng-model="value3" ng-change="update()"/&gt; &lt;/form&gt; &lt;div class="ui-grid-b"&gt; &lt;div class="ui-block-a"&gt;&lt;div class="ui-bar ui-bar-e" style="height:60px"&gt;Value1: {{value1}}&lt;/div&gt;&lt;/div&gt; &lt;div class="ui-block-b"&gt;&lt;div class="ui-bar ui-bar-e" style="height:60px"&gt;Value2: {{value2}}&lt;/div&gt;&lt;/div&gt; &lt;div class="ui-block-c"&gt;&lt;div class="ui-bar ui-bar-e" style="height:60px"&gt;Value3: {{value3}}&lt;/div&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>My update function looks like this:</p> <pre><code>function MyCtrl($scope){ $scope.update = function(){ console.log("C=" + $scope.value3 + "B="+$scope.value2 + "A="+$scope.value1); } } </code></pre> <p>The {{value1-3}} on the page is updated correctly when moving the sliders The update function keeps logging zero when moving the sliders.</p> <p>Why? Are the here different scopes involved?</p> <p>(Also the sliders have -10 as initial value - not -10 as defined) jquery-1.9</p> <ul> <li>jquery-1.9.1.min.js</li> <li>jquery.mobile-1.3.0.min.js</li> <li>jquery-mobile-angular-adapter-1.3.1.js</li> </ul>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload