@Override
 public IconPos getIconPos() {
   String string = getAttribute("data-iconpos");
   return string == null ? null : IconPos.valueOf(string);
 }
 /**
  * Sets the position of the icon. If you desire an icon only button then set the position to
  * IconPos.NOTEXT
  */
 @Override
 public void setIconPos(IconPos pos) {
   setAttribute("data-iconpos", pos.getJqmValue());
 }