Package | Description |
---|---|
fc.web.forms |
Encapsulates HTML forms as java objects (Usage Diagram [in new window], Class Hierarchy Diagram).
|
Modifier and Type | Class and Description |
---|---|
class |
RefreshableSelect
An refreshable HTML Select field.
|
Modifier and Type | Method and Description |
---|---|
Select |
RefreshableSelect.allowMultiple(boolean allow)
true is multiple selections are allowed, false otherwise.
|
Select |
Select.allowMultiple(boolean allow)
true is multiple selections are allowed, false otherwise.
|
static Select |
FormUtil.fillSelectWithDays(Select s)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithDays(Select s,
Calendar cal)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithDaysToday(Select s)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithMonths(Select s,
boolean monthsAsText)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithMonths(Select s,
boolean monthsAsText,
Calendar cal)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithMonthsToday(Select s,
boolean monthsAsText)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithYears(Select s,
int startYear)
Fills the specified select from years, starting with the specified year
till the current year.
|
static Select |
FormUtil.fillSelectWithYears(Select s,
int startYear,
Calendar yearToSelect)
Fills the specified select from years, starting with the specified year,
upto the current year.
|
static Select |
FormUtil.fillSelectWithYears(Select s,
int startYear,
int endYear,
Calendar cal)
Fills the specified select from years, from the specified start and end
years (both inclusive).
|
static Select |
FormUtil.fillSelectWithYearsToday(Select s,
int startYear)
Fills the specified select from years, starting with the specified year.
|
Select |
Form.getSelect(String name)
Returns the field with the specific name as a
Select . |
Select |
RefreshableSelect.setSize(int size)
This value (if set) is rendered as the html SIZE tag.
|
Select |
Select.setSize(int size)
This value (if set) is rendered as the html SIZE tag.
|
Select |
Select.useQuery(Connection con,
String query)
Convenience method that calls
useQuery(con, query, null) . |
Select |
Select.useQuery(Connection con,
String query,
Select.Option defaultOpt)
The specified query is used to populate this select.
|
Modifier and Type | Method and Description |
---|---|
static void |
FormUtil.fillSelect(Select select,
List list,
String message,
Class beanClass,
String valueMethodName,
String htmlTextMethodName)
Note: This method is almost never needed.
|
static void |
FormUtil.fillSelect(Select select,
Map values,
String message)
Note: This method is almost never needed.
|
static Select |
FormUtil.fillSelectWithDays(Select s)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithDays(Select s,
Calendar cal)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithDaysToday(Select s)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithMonths(Select s,
boolean monthsAsText)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithMonths(Select s,
boolean monthsAsText,
Calendar cal)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithMonthsToday(Select s,
boolean monthsAsText)
Fills the specified select from years, starting with the specified year.
|
static Select |
FormUtil.fillSelectWithYears(Select s,
int startYear)
Fills the specified select from years, starting with the specified year
till the current year.
|
static Select |
FormUtil.fillSelectWithYears(Select s,
int startYear,
Calendar yearToSelect)
Fills the specified select from years, starting with the specified year,
upto the current year.
|
static Select |
FormUtil.fillSelectWithYears(Select s,
int startYear,
int endYear,
Calendar cal)
Fills the specified select from years, from the specified start and end
years (both inclusive).
|
static Select |
FormUtil.fillSelectWithYearsToday(Select s,
int startYear)
Fills the specified select from years, starting with the specified year.
|
Constructor and Description |
---|
TestDependency(Select country,
DependentSelect state) |
TestTimedRefresher(Select target) |
VSelectValue(Select field,
String errorMessage,
String badSelectValue) |