Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

3. Additionally, we should modify the default length of the course, subject , and section text fields in the worksite setup UI so that we can have more flexibility. This is now done via the CourseManagementProvider impl of the getCourseIdRequiredFieldSizes():

/**

  • Return a list of maximum field size for course id required fields
    */
    public List getCourseIdRequiredFieldsSizes()
    {
    List rv = new Vector();
    rv.add(new Integer(8));
    rv.add(new Integer(3));
    rv.add(new Integer(3));
    return rv;
    }