private void setTopOffset(int pixels) {
   DOMUtility.setStyleAttribute("ListTableContainer", "top", pixels + "px");
 }
 /**
  * Called when the any cell on the list gets a mouse out event
  *
  * @param row
  */
 public void mouseOut(int row) {
   DOMUtility.setStyleAttribute("y" + row, "backgroundColor", "#FFFFFF");
   DOMUtility.setStyleAttribute("h" + row, "backgroundColor", "#edf2f2");
 }
 public void setLeftOffset(int pixels) {
   mLeftOffset = pixels;
   DOMUtility.setStyleAttribute("ListTableContainer", "left", (mLeftOffset + 1) + "px");
 }