forked from gustavnavar/Grid.Blazor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIGridColumnCollection.cs
More file actions
114 lines (100 loc) · 4.54 KB
/
IGridColumnCollection.cs
File metadata and controls
114 lines (100 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
using GridShared.Columns;
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Reflection;
namespace GridShared
{
public interface IGridColumnCollection<T> : IGridColumnCollection
{
/// <summary>
/// Add new column to the grid
/// </summary>
/// <param name="column">Columns</param>
/// <returns>Added column</returns>
IGridColumn<T> Add(IGridColumn<T> column);
/// <summary>
/// Add new column to the grid, without specifying model property. Using this you must specify RenderValueAs method.
/// </summary>
/// <returns>Added column</returns>
IGridColumn<T> Add();
/// <summary>
/// Add new column to the grid, without specifying model property. Using this you must specify RenderValueAs method.
/// </summary>
/// <param name="hidden">Hidden column not display in grid, but you can get values from client side</param>
/// <returns>Added column</returns>
IGridColumn<T> Add(bool hidden);
/// <summary>
/// Add new column to the grid
/// </summary>
/// <param name="constraint">Member of generic class</param>
/// <returns>Added column</returns>
IGridColumn<T> Add<TKey>(Expression<Func<T, TKey>> constraint);
/// <summary>
/// Add new column to the grid
/// </summary>
/// <param name="constraint">Member of generic class</param>
/// <param name="columnName">Specify column internal static name, used for sorting and filtering</param>
/// <returns>Added column</returns>
IGridColumn<T> Add<TKey>(Expression<Func<T, TKey>> constraint, string columnName);
/// <summary>
/// Add new column to the grid
/// </summary>
/// <param name="constraint">Member of generic class</param>
/// <param name="hidden">Hidden column not display in grid, but you can get values from client side</param>
/// <returns>Added column</returns>
IGridColumn<T> Add<TKey>(Expression<Func<T, TKey>> constraint, bool hidden);
/// <summary>
/// Add new column based on property info, using reflection
/// </summary>
/// <returns>Added column</returns>
IGridColumn<T> Add(PropertyInfo pi);
/// <summary>
/// Add new column to the grid
/// </summary>
/// <param name="position">Position to insert</param>
/// <param name="column">Columns</param>
/// <returns>Added column</returns>
IGridColumn<T> Insert(int position, IGridColumn<T> column);
/// <summary>
/// Add new column to the grid
/// </summary>
/// <param name="position">Position to insert</param>
/// <param name="constraint">Member of generic class</param>
/// <returns>Added column</returns>
IGridColumn<T> Insert<TKey>(int position, Expression<Func<T, TKey>> constraint);
/// <summary>
/// Add new column to the grid
/// </summary>
/// <param name="position">Position to insert</param>
/// <param name="constraint">Member of generic class</param>
/// <param name="columnName">Specify column internal static name, used for sorting and filtering</param>
/// <returns>Added column</returns>
IGridColumn<T> Insert<TKey>(int position, Expression<Func<T, TKey>> constraint, string columnName);
/// <summary>
/// Add new column to the grid
/// </summary>
/// <param name="position">Position to insert</param>
/// <param name="constraint">Member of generic class</param>
/// <param name="hidden">Hidden column not display in grid, but you can get values from client side</param>
/// <returns>Added column</returns>
IGridColumn<T> Insert<TKey>(int position, Expression<Func<T, TKey>> constraint, bool hidden);
/// <summary>
/// Get added column by member expression
/// </summary>
/// <param name="constraint">Member of generic class</param>
/// <returns>Found column or NULL, if column not found</returns>
IGridColumn<T> Get<TKey>(Expression<Func<T, TKey>> constraint);
/// <summary>
/// Parent grid
/// </summary>
IGrid Grid { get; }
}
public interface IGridColumnCollection : IEnumerable<IGridColumn>
{
/// <summary>
/// Get column by internal name
/// </summary>
IGridColumn GetByName(string name);
}
}