简体   繁体   English

使用 Angular.js 在某个值后打破表格行

[英]Break table row after some value using Angular.js

I have one table and I need when serial number will above the 10 it will again shift to next column serial number will start from 11 .我有一张桌子,我需要当序列号高于10它会再次转移到下一列序列号将从11开始。

Here is my code:这是我的代码:

 <table class="table table-bordered table-striped table-hover" id="dataTable" >
    <colgroup>
       <col class="col-md-1 col-sm-1">
       <col class="col-md-4 col-sm-4">
    </colgroup>
    <thead>
       <tr>
          <th>Sl. No</th>
          <th>Generated Code</th>
       </tr>
    </thead>
    <tbody id="detailsstockid">
        <tr ng-repeat="c in listOfViewCode">
            <td>{{$index+1}}</td>
            <td>{{c.generated_code}}</td>
        </tr>
    </tbody>
</table>

Actually I need the following format.其实我需要以下格式。

sl no  Generated Code  sl no  Generated Code

1          aaa          11        ssss

2          sss          12        gggg
3          eee
4          cccc
5          tttt
6          bbbb
7          nnnn
8          nnnn
9          bbbb
10         cccc

newtable:新表:

<table class="table table-bordered table-striped table-hover" id="dataTable" ng-repeat="group in groups" style="float:left" >
<colgroup>
<col class="col-md-1 col-sm-1">
<col class="col-md-3 col-sm-3">
</colgroup>
<thead>
 <tr>
<th>Sl. No</th>
<th>Generated Code</th>
</tr>
</thead>
<tbody id="detailsstockid">
<tr ng-repeat="g in group.values">
<td>{{$parent.$index * 10 + $index +  1}}</td>
<td>{{g.generated_code}}</td>
</tr>

</tbody>
</table>

Suppose I have 100 no of data.假设我有100条数据。 When serial number will cross 10 , it will shift to right side with same two column and so on.当序列号越过10 ,它会移到右侧,两列相同,依此类推。 I am using Angular.js.我正在使用 Angular.js。

Another way of going about it, that would work for any number of columns from 1-10 would be to do something like:另一种处理方法,适用于从 1 到 10 的任意数量的列将执行以下操作:

var newList = [];
for(var i = 0; i<listOfViewCode.length; i++) {
    var index = i+1;
    var listIndex = (i%10);
    var row = newList[listIndex];
    if(row == null) {
        row = [];
    }
    listOfViewCode[i].index = index;

    row.push(listOfViewCode[i]);
    newList[listIndex] = row;
}

And then use ng-repeat-start to render.然后使用 ng-repeat-start 进行渲染。

<tr ng-repeat="c in newList">
    <td ng-repeat-start="p in c">{{p.index}}</td>
    <td ng-repeat-end>{{p.generated_code}}</td>     
</tr>

Ok so the best I could come up with was creating multiple tables and using css to give them the appearance of one table...好的,所以我能想到的最好的方法是创建多个表并使用 css 为它们提供一张表的外观......

Here is the plunker: http://plnkr.co/edit/ZQ1NpOa96IpzSncbFSud?p=preview这是 plunker: http ://plnkr.co/edit/ZQ1NpOa96IpzSncbFSud?p=preview

In your template something like this:在你的模板中是这样的:

<table ng-repeat="group in groups" style="float: left">
  <thead>
    <tr>
      <th><b>Sl. No</b></th>
      <th><b>Generated Code</b></th>
    </tr>
  </thead>
  <tr ng-repeat="g in group.values">
    <td>{{$parent.$index * 10 + $index +  1}}</td>
    <td>{{g.value}}</td>
  </tr>
</table>

Then we need to break up your data into chunks and assign them to a "group"... so in the controller we do something like this:然后我们需要将您的数据分解成块并将它们分配给一个“组”......所以在控制器中我们做这样的事情:

var items = [{value: 'bbb'},{value: 'bbb'},{value: 'bbb'},{value: 'bbb'},{value: 'bbb'},{value: 'aaa'},{value: 'aaa'},{value: 'aaa'},{value: 'aaa'},{value: 'aaa'},{value: 'ccc'},{value: 'ccc'},{value: 'ccc'},{value: 'ccc'},{value: 'ccc'},{value: 'ddd'},{value: 'ddd'},{value: 'ddd'},{value: 'ddd'},{value: 'ddd'},{value: 'eee'},{value: 'eee'},{value: 'eee'},{value: 'eee'},{value: 'eee'},{value: 'fff'},{value: 'fff'},{value: 'fff'},{value: 'fff'},{value: 'fff'},{value: 'ggg'},{value: 'ggg'},{value: 'ggg'},{value: 'ggg'},{value: 'ggg'},{value: 'hhh'},{value: 'hhh'},{value: 'hhh'},{value: 'hhh'},{value: 'hhh'},{value: 'iii'},{value: 'iii'},{value: 'iii'},{value: 'iii'},{value: 'iii'}];

$scope.groups = [];

// break the data into chunks of 10
var i,j,temparray,chunk = 10;
for (i=0,j=items.length; i<j; i+=chunk) {
    temparray = items.slice(i,i+chunk);
    $scope.groups.push({values: temparray});
}

This will create tables with 10 rows each (with the last one having the remaining rows), side by side (using the style="float: left")... best I could come up with.这将创建每行 10 行的表格(最后一行包含剩余的行),并排(使用 style="float: left")...我能想到的最好的办法。 Hope it helps!希望能帮助到你!

I would suggest making two tabels, as it looks like what you are really doing.我建议制作两个表格,因为它看起来像你真正在做什么。 So make a function that gives you elements 1-10 and one that gives you 10 and above, and then just do as you are already doing.因此,创建一个函数可以为您提供元素 1-10 和一个可以为您提供 10 及以上元素的函数,然后按照您已经在做的事情做。

Alternatively if you really want them in one table, you could make an array that contains an array of elements for each row - so elements that are the samen when element % 10. Eg something like.或者,如果您真的希望它们在一个表中,您可以创建一个包含每行元素数组的数组 - 因此元素在元素 % 10 时相同。例如类似的东西。

var newList = [];
for(var i = 0; i<listOfViewCode; i++) {
    var index = i+1;
    var row = newList[i%10];
    if(row == null) {
        row = [];
    }
    row.push(listOfViewCode[i]);
    newList[i%10] = row;
}

And then you just have a nested ng-repeat within the ng-repeat and render them.然后你在 ng-repeat 中有一个嵌套的 ng-repeat 并渲染它们。

Update: something like this更新:像这样

It could be something like它可能是这样的

<tr ng-repeat="c in newList">
    <td>{{$index+1}}</td>
    <td>{{c[0].generated_code}}</td>
    <td>{{$index+11}}</td>
    <td>{{c[1].generated_code}}</td>
</tr>

Please see the code below-:请看下面的代码-:

Code-:代码-:

<div ng-controller="MyCtrl">

<table  id="dataTable" style="float: left;"  ng-repeat="c in [0,10,20,30,40,50,60,70,80,90]" ng-init="newlist=listOfViewCode.slice(c,c+10)">
    <colgroup>
       <col >
       <col>
    </colgroup>
    <thead>
       <tr>
          <th>Sl. No</th>
          <th>Generated Code</th>
       </tr>
    </thead>
    <tbody id="detailsstockid">
        <tr ng-repeat="c in newlist">
            <td>{{$index+c}}</td>
            <td>{{c}}</td>
        </tr>
    </tbody>
</table>

</div>

Controller code:控制器代码:

var myApp = angular.module('myApp',[]);

//myApp.directive('myDirective', function() {});
//myApp.factory('myService', function() {});

function MyCtrl($scope) {
$scope.listOfViewCode=[];
for(var i=0;i<100;i++)
{
$scope.listOfViewCode[i]=i+1;
}
}

I have just shown an example to help you implement what you are trying to do.Hope this helps.我刚刚展示了一个例子来帮助你实现你正在尝试做的事情。希望这会有所帮助。

Here is an example, which basically involves storing the data as a nx 10 matrix and using nested loops to make the adjustments.这是一个示例,它基本上涉及将数据存储为nx 10矩阵并使用嵌套循环进行调整。

http://jsfiddle.net/gwfPh/15/ http://jsfiddle.net/gwfPh/15/

Notice, in the controller, the data is stored in the modified form.请注意,在控制器中,数据以修改后的形式存储。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM