public DropDownChoiceColumn(String columnId, IModel<String> headerModel,
String propertyExpression, S sortProperty,
List<T> choices, IChoiceRenderer<T> renderer)
{
super(columnId, headerModel, propertyExpression, sortProperty);
choicesModel = new WildcardListModel(choices);
choiceRenderer = renderer;
}