how to add icon in column in angularjs?

can we add icon if if ellipse is present on column .Actually I added ellipsis when text is large .I want to add icon along with text so that user can see whole or full text on icon click .Can we add icon on ellipsis text and on click of that icon user can see full text here is my code ..

  <ion-view ng-controller="cntrl">

         <div id="scrollingTable" ng-if="isservicedataloadedProperly">
            <ion-scroll overflow-scroll="true"  ng-style="viewHeight">
               <div class="row brd rowclass" collection-repeat="column in tasklist_records track by $index" ng-class="{white:$index%2 == 0,grey:$index%2 == 1,firstrow:$first}" >
                  <d
               </div>
               <div ng-if="!haveNorecordFound" class="norecordfoundcss"> No record found.</div>
            </ion-scroll>

is there any way to do that ?

Related: how to add icons in row which is generated dynamically in ionic

icons added. You will have to add the functions for the buttons.

HTML:

    <ion-item ng-repeat="item in items">
        {{item.testcase}}
      <button class="button {{item.close}}"></button>
      <button class="button {{item.edit}}"></button>

JS:

myPopup.then(function(res) {
        console.log('Tapped!', res);
        if(typeof res!='undefined')
          res.edit="ion-edit";
          res.close="ion-close";
        $scope.items.push(res)

        console.log($scope.items);
    });

http://codepen.io/anon/pen/XbJJzO
Reference: How to add icon on row in ionic framework?