ui-sortable icon indicating copy to clipboard operation
ui-sortable copied to clipboard

Sorting doesn't work for the first time.. After page refresh, works fine

Open Tanisha27 opened this issue 8 years ago • 4 comments

I am using ui-sortable in Meteor web app. Loading dynamic data in the horizontal grid and using ui-sortable to sort the grid columns. But its not working properly. But, after I refresh the page, it starts working properly until I hard reload the page.

Code: js file

this.sortableOptions = {
			handle: '> .move-handle',
			scroll: true,
			'ui-floating': 'auto',
			cursor: "pointer",
			containment: "parent"
}

html file

<ul ng-model="editEvaluation.evaluation.sections" ui-sortable="editEvaluation.sortableOptions" class="sortable-list agile-list" >
        <li ng-repeat="section in editEvaluation.evaluation.sections track by $index" class="sections-list" ng-class="{'selected': section.selected}">
                 <div class="move-handle">
                          <i class="fa fa-bars"></i>
                  </div>
                  <div class="section-detail" ng-click="editEvaluation.selectSection($index)">
                           //section
                  </div>
          </li>
 </ul>

Tanisha27 avatar Mar 31 '17 13:03 Tanisha27

Do you get any error in your browser console?

thgreasi avatar Mar 31 '17 14:03 thgreasi

I would also suggest to avoid using ng-class (and any other DOM manipulations) directly on the <li>. You can probably just wrap the <li>'s content in an other <div> and apply the class there.

thgreasi avatar Mar 31 '17 15:03 thgreasi

Same thing here, i have 3 different sortable elements, i only have the pb on one.

If i force JQuery sortable to reload, it works

maybe a wrong initialization of the directive on angular apply ?

do not have any errors on logs

nicolasd avatar Jun 22 '17 14:06 nicolasd

Try removing class="sections-list" from the <li>

leoliaolei avatar Sep 10 '17 16:09 leoliaolei