Skip to content

Commit

Permalink
Merge pull request #35 from bharatdwarkani/kailash
Browse files Browse the repository at this point in the history
hidden columns.
  • Loading branch information
bharatdwarkani authored Dec 29, 2017
2 parents 484a9da + b85fbcd commit 1e678f8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions TaskPlanner/Base/Stories/StoryBaseModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ from priority in ps2.DefaultIfEmpty()
Penalty = story.Penality,
StoryPoints = story.StoryPoints,
Tag = story.Tag,
SortOrder = story.SortOrder,
SprintName = story.SprintName,
AssigneeName = story.AssigneeName
}).ToList();
Expand Down
13 changes: 7 additions & 6 deletions TaskPlanner/wwwroot/ts/Stories/Stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ let storiesList: Grid = new Grid({
{ field: 'Title', headerText: 'Title', type: "string", validationRules: { required: true } },
{ field: 'ThemeName', headerText: 'Theme', type: "string" },
{ field: 'EpicName', headerText: 'Epic', type: "string" },
{ field: 'Milestone', headerText: 'Milestone', type: "string" },
{ field: 'Milestone', headerText: 'Milestone', type: "string", visible: false },
{ field: 'Release', headerText: 'Release', type: "string" },
{
field: 'Status', headerText: 'Status', type: "string", width: 150, edit: {
Expand All @@ -70,13 +70,14 @@ let storiesList: Grid = new Grid({
statusObj.appendTo(statusElem);
}
} },
{ field: 'Priority', headerText: 'Priority', type: "string" },
{ field: 'Benifit', headerText: 'Benefit', type: "number" },
{ field: 'Penalty', headerText: 'Penalty', type: "number" },
{ field: 'Priority', headerText: 'Priority', type: "string", visible: false },
{ field: 'Benifit', headerText: 'Benefit', type: "number", visible: false },
{ field: 'Penalty', headerText: 'Penalty', type: "number", visible: false },
{ field: 'StoryPoints', headerText: 'Story Points', type: "number" },
{ field: 'SortOrder', headerText: 'Sort Order', type: "number", visible: false },
{ field: 'SprintName', headerText: 'Sprint', type: "string" },
{ field: 'AssigneeName', headerText: 'Assignee', type: "string" },
{ field: 'Tag', headerText: 'Label', type: "string" }
{ field: 'AssigneeName', headerText: 'Assignee', type: "string", visible: false },
{ field: 'Tag', headerText: 'Label', type: "string", visible: false }
],
created: create,
dataSource: templatedata,
Expand Down

0 comments on commit 1e678f8

Please sign in to comment.