Implemented interface member:
property
IsCustomProperty
System.Web.DynamicData.IMetaColumn.IsCustomProperty
4 references to IsCustomProperty
System.Web.DynamicData (4)
DynamicData\FilterRepeater.cs (1)
194if (column.IsCustomProperty) return false;
DynamicData\FilterUserControlBase.cs (1)
191} else if (_column.ColumnType == typeof(bool) && !_column.IsCustomProperty) {
DynamicData\MetaColumn.cs (1)
314if (IsCustomProperty) return false;
DynamicData\MetaTable.cs (1)
578var serverSideColumns = Columns.Where(c => !c.IsCustomProperty).ToList();