com.microstrategy.web.app.gui.CartExpression |
![]() |
CartExpression interface that defines minimum contract all cart expression must implement.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | DISPLAY_ALL_ATTR_FORMS | Indicates to display both ID and Non-Id forms (default behavior). | |||||||||
int | DISPLAY_ATTR_NON_ID_FORMS | Indicates to ignore ID forms and display all other type of forms. | |||||||||
int | DISPLAY_ONLY_ATTR_ID_FORMS | Indicates only display ID forms and ignore other forms when displaying. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract GGCalendar |
getCalendar()
Function used for returning instance of calendar object
GGCalendar . | ||||||||||
abstract int |
getSelectedSize()
Gets the current number of selected elements in the cart.
| ||||||||||
abstract boolean |
isCalendarAvailable()
Function that check whether calendar object is enabled or not.
| ||||||||||
abstract void |
renderButtonNextInput(MarkupOutput out)
Render a button next to the input textbox
| ||||||||||
abstract void |
renderExpression(MarkupOutput out)
This function is used for rendering group of elements that
conform the input and operator in Expression cart
| ||||||||||
abstract void |
renderIncludeExcludeOption(MarkupOutput out)
Function that outputs the Include/Exclude option.
| ||||||||||
abstract void |
renderInput(MarkupOutput out)
Function that renders qualification value HTML textbox.This is where
users enters qualification values.
| ||||||||||
abstract void |
renderMatch(MarkupOutput out)
Function that outputs AND / OR match output HTML radio button.
| ||||||||||
abstract void |
renderOperators(MarkupOutput out)
Function used for rendering supported operators HTML pull-down list.
| ||||||||||
abstract void |
setCalendar(GGCalendar calendar)
Function used for setting calendar object
GGCalendar . |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Indicates to display both ID and Non-Id forms (default behavior).
Indicates to ignore ID forms and display all other type of forms.
Indicates only display ID forms and ignore other forms when displaying.
Function used for returning instance of calendar object GGCalendar
.
Gets the current number of selected elements in the cart.
Function that check whether calendar object is enabled or not.
Render a button next to the input textbox
out | where to write the output of the method. |
---|
This function is used for rendering group of elements that conform the input and operator in Expression cart
out | where to write the output of the method. |
---|
Function that outputs the Include/Exclude option.
out | where to write the output of the method. |
---|
Function that renders qualification value HTML textbox.This is where users enters qualification values.
out | where to write the output of the method. |
---|
Function that outputs AND / OR match output HTML radio button. This is a global operator that groups all qualifications made by the user.
out | where to write the output of the method. |
---|
Function used for rendering supported operators HTML pull-down list.
out | where to write the output of the method. |
---|
Function used for setting calendar object GGCalendar
.
This function abstracts objec implemented in Javascript code. It's
used for facilatating end user to enter date values.
calendar | calendar instance. |
---|