public String getColumnStyleClass() throws JspException
{
ValueListSpaceTag rootTag = (ValueListSpaceTag) JspUtils.getParent(this, ValueListSpaceTag.class);
ValueListConfigBean config = rootTag.getConfig();
if (config == null)
{
throw new JspException("No config found on root tag");
}
return config.getStylePrefix();
}