Figured it out:
     // get your worksheet entry

    WorksheetEntry wse = [~getWorkSheet(filter); - my method~]

    if (wse == null) {

      return false;

    }

    // this is it here

    wse.setColCount(wse.getColCount() + 1);

    try {

      wse.update();

    } catch (IOException e) {

      e.printStackTrace();

    } catch (ServiceException e) {

      e.printStackTrace();

    }

Brandon Donnelson

http://gwt-examples.googlecode.com

Reply via email to