ng-model is not getting changed in ui-select

后端 未结 9 794
太阳男子
太阳男子 2021-01-17 08:45

I\'m trying to achieve something very straightforward:


    {         


        
9条回答
  •  轮回少年
    2021-01-17 09:07

    For me it was the that was not updating the text and I used it like so:

    $timeout(function () {
        $('#ownerdetail').trigger("create");
        $('#ownerdetail').delay(0).animate({opacity: 1}, 100);
        $('#selectdcontact').selectmenu().selectmenu('refresh'); //This solves it
        $('#selectdcust').selectmenu().selectmenu('refresh'); //This solves it
      });
    

提交回复
热议问题