This commit is contained in:
Daniel 2023-07-07 15:35:48 +08:00
parent 060d933390
commit 33e6a2ff2c
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 12 additions and 1 deletions

View file

@ -107,7 +107,8 @@ type AttributeViewCalc struct {
type CalcOperator string
const (
CalcOperatorIsEqual FilterOperator = "="
CalcOperatorNone FilterOperator = ""
CalcOperatorCountAll FilterOperator = "Count all"
)
type AttributeViewSort struct {
@ -312,3 +313,7 @@ func (av *AttributeView) FilterRows() {
av.Rows = rows
}
}
func (av *AttributeView) CalcCols() {
}