You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nick and I spent almost an hour tracking this one down: One of my grid columns was coming from our LookupMixin which has a column named label. I was showing that label on webgrid and you could filter it. But webgrid used the column name label as the class on the filter HTML. Bootstrap also has a label class. So you can imagine the styling was all wrong.
Basically this was an extremely surprising bug and we really should not be doing this. We should derive some highly unlikely name for our CSS classes instead of copying directly from the column names.
The text was updated successfully, but these errors were encountered:
Nick and I spent almost an hour tracking this one down: One of my grid columns was coming from our
LookupMixin
which has a column namedlabel
. I was showing that label on webgrid and you could filter it. But webgrid used the column namelabel
as the class on the filter HTML. Bootstrap also has alabel
class. So you can imagine the styling was all wrong.Basically this was an extremely surprising bug and we really should not be doing this. We should derive some highly unlikely name for our CSS classes instead of copying directly from the column names.
The text was updated successfully, but these errors were encountered: