Here is my angular view,
<label class="control-label">skipColumns:</label>
  <br />
<fieldset ng-repeat="skipColumn in config.skipColumns track by $index">
<input type="text" class="form-control" ng-model="skipColumn[0]" /><br />
</fieldset>
<button class="btn btn-default" ng-click="addNewSkipColumn(skipColumn)">Add SkipColumn</button>
<br />
which adds new textfield every time i click addSkipColumn button.
here is my js code:
$scope.config.skipColumns = [];
    $scope.addNewSkipColumn = function (skipColumn) {
        if($scope.config.skipColumns==null){
            $scope.config.skipColumns=[];
        }
        $scope.config.skipColumns.push([]);
    }
so the problem is when I display or see the structure of $scope.config.skipColumns, It gives the following output:
{
 skipColumns:[["content of textfield1"],["content of textfield1"]..]
 }
But what I need is,`
{
 skipColumns:["content of textfield1","content of textfield1",..]
 }
please help me.("content of textfield" resfers to form data)
 
     
     
    