-
Notifications
You must be signed in to change notification settings - Fork 79
Column Menu - Groupable and Reorderable #1546
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Co-authored-by: Yordan <60105689+yordan-mitev@users.noreply.github.com>
Co-authored-by: Yordan <60105689+yordan-mitev@users.noreply.github.com>
Co-authored-by: Yordan <60105689+yordan-mitev@users.noreply.github.com>
Co-authored-by: Yordan <60105689+yordan-mitev@users.noreply.github.com>
components/grid/templates/filter.md
Outdated
{ | ||
Id = i, | ||
Name = "Product name " + i, | ||
Price = (decimal)(rnd.Next(1, 50) * 3.14), | ||
Released = DateTime.Now.AddDays(-rnd.Next(1, 365)).AddYears(-rnd.Next(1, 10)).Date, | ||
Discontinued = i % 5 == 0 | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is one extra tab here?
components/grid/templates/filter.md
Outdated
{ | ||
Member = nameof(Product.Price), | ||
MemberType = typeof(int), | ||
Operator = FilterOperator.IsGreaterThanOrEqualTo, | ||
Value = 55 | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra tab?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should not be, its aligned by VS, but I will fix that
Groupable: #6975
Reorderable