Angularjs ui-grid:如何按年,月,周对列进行分组?

时间:2015-06-05 04:21:26

标签: angularjs angular-ui-grid

在下面的示例中,我有一列名为"混合日期"的日期数据。我可以将它们分组,但它只能按天分组。如果我想按月分组以查看每个月有多少行,该怎么办?还是一年,一周?

See this Plunkr

我只使用了网格分组的基本设置:

- (void)gameRequestDialog:(FBSDKGameRequestDialog *)gameRequestDialog didCompleteWithResults:(NSDictionary *)results{
if (results) {

      }
}

- (void)gameRequestDialog:(FBSDKGameRequestDialog *)gameRequestDialog didFailWithError:(NSError *)error{
if (error) {
    NSLog(@"%@",error.localizedDescription);
   }
}

- (void)gameRequestDialogDidCancel:(FBSDKGameRequestDialog *)gameRequestDialog{
NSLog(@"Cancelled by user");
}

请注意,我使用的是ui-grid,而不是ng-grid。

0 个答案:

没有答案