Uses of Interface
org.kuali.rice.krad.uif.component.Ordered

Packages that use Ordered
org.kuali.rice.krad.uif.component   
org.kuali.rice.krad.uif.container   
org.kuali.rice.krad.uif.control   
org.kuali.rice.krad.uif.element   
org.kuali.rice.krad.uif.field   
org.kuali.rice.krad.uif.modifier   
org.kuali.rice.krad.uif.util   
org.kuali.rice.krad.uif.view   
org.kuali.rice.krad.uif.widget   
 

Uses of Ordered in org.kuali.rice.krad.uif.component
 

Subinterfaces of Ordered in org.kuali.rice.krad.uif.component
 interface Component
          Component defines basic properties and methods that all rendering element implement
 

Classes in org.kuali.rice.krad.uif.component that implement Ordered
 class ComponentBase
          Base implementation of Component which other component implementations should extend
 

Uses of Ordered in org.kuali.rice.krad.uif.container
 

Subinterfaces of Ordered in org.kuali.rice.krad.uif.container
 interface Container
          Type of component that contains a collection of other components.
 

Classes in org.kuali.rice.krad.uif.container that implement Ordered
 class CollectionGroup
          Group that holds a collection of objects and configuration for presenting the collection in the UI.
 class ContainerBase
          Base Container implementation which container implementations can extend
 class DialogGroup
          Special type of Group that presents a the content for a modal dialog
 class Group
          Container that holds a list of Field or other Group instances
 class LinkGroup
          Special Group that presents a grouping on links, which can also include nested groupings of links
 class NavigationGroup
          Special Group that renders a navigation section
 class PageGroup
           
 class ReorderingGroup
          Group implementation that supports reordering of the group items
 class TabGroup
          A group that presents its child Groups as tabs.
 class TreeGroup
          Group component that is backed by a Tree data structure and typically rendered as a tree in the user interface
 

Uses of Ordered in org.kuali.rice.krad.uif.control
 

Subinterfaces of Ordered in org.kuali.rice.krad.uif.control
 interface Control
          Represents an interactive element in the UI (typically an HTML control)
 

Classes in org.kuali.rice.krad.uif.control that implement Ordered
 class CheckboxControl
          Represents a HTML Checkbox control.
 class CheckboxGroupControl
          Represents a group of HTML checkbox controls.
 class ControlBase
          Base class for all Control implementations
 class FileControl
          Represents a HTML File control, generally rendered as an input control with type 'file'.
 class GroupControl
          Represents a group control, which is a special control to handle the input of a KIM Group by group name
 class HiddenControl
          Represents a HTML Hidden control, generally rendered as an input control of type 'hidden'.
 class MultiValueControlBase
          Base class for controls that accept/display multiple values
 class RadioGroupControl
          Represents a group of HTML Radio controls.
 class SelectControl
          Represents a HTML Select control.
 class SpinnerControl
          Text control that as decorated with a spinner widget (allowing the control value to be modified using the spinner)
 class TextAreaControl
          Represents a HTML TextArea control.
 class TextControl
          Represents a HTML Text control, generally rendered as a input field of type 'text'.
 class UserControl
          Represents a user control, which is a special control to handle the input of a Person
 

Uses of Ordered in org.kuali.rice.krad.uif.element
 

Subinterfaces of Ordered in org.kuali.rice.krad.uif.element
 interface ContentElement
           
 

Classes in org.kuali.rice.krad.uif.element that implement Ordered
 class Action
          Field that presents an action that can be taken on the UI such as submitting the form or invoking a script
 class ContentElementBase
           
 class DataTable
          Content element that renders a table using the RichTable widget configured with an Ajax (or Javascript) data source
 class FieldValidationMessages
          ValidationMessages for logic and options specific to groups
 class GroupValidationMessages
          ValidationMessages for logic and options specific to groups
 class Header
          Content element that renders a header element and optionally a Group to present along with the header text
 class Iframe
          Content element that encloses an iframe
 class Image
          Content element that renders a HTML <IMG> tag
 class Label
          Content element that renders a label
 class Link
          Content element that renders a link
 class Message
          Encapsulates a text message to be displayed
 class PageValidationMessages
          ValidationMessages for logic and options specific to pages TODO this class is currently a placeholder for possible future functionality (ex.
 class Space
          Content element that renders a non-breaking space HTML &nbsp; tag
 class ValidationMessages
          Field that displays error, warning, and info messages for the keys that are matched.
 

Uses of Ordered in org.kuali.rice.krad.uif.field
 

Subinterfaces of Ordered in org.kuali.rice.krad.uif.field
 interface Field
          Component that contains one or more user interface elements and can be placed into a Container
 

Classes in org.kuali.rice.krad.uif.field that implement Ordered
 class ActionField
          Field that encloses an @{link org.kuali.rice.krad.uif.element.Action} element
 class DataField
          Field that renders data from the application, such as the value of a data object property
 class FieldBase
          Base class for Field implementations
 class FieldGroup
          Field that contains a nested Group.
 class GenericField
          Field whose output is produced by invoking a method or template and has no properties (generic)
 class ImageField
          Field that wraps an image content element.
 class InputField
          Field that encapsulates data input/output captured by an attribute within the application
 class LinkField
          Field that encloses a link element
 class LookupInputField
          Custom InputField for search fields within a lookup view
 class MessageField
          Field wrapper for a Message
 class RemoteFieldsHolder
          A placeholder in the configuration for a Container list of items that will be invoked to retrieve a list of RemotableAttributeField instances which will then be inserted into the containers list at the position of the holder
 class SpaceField
          Field that produces only a space
 

Uses of Ordered in org.kuali.rice.krad.uif.modifier
 

Subinterfaces of Ordered in org.kuali.rice.krad.uif.modifier
 interface ComponentModifier
          Provides modification functionality for a Component
 

Classes in org.kuali.rice.krad.uif.modifier that implement Ordered
 class CompareFieldCreateModifier
          Generates Field instances to produce a comparison view among objects of the same type
 class ComponentConvertModifier
          For a given Component instance converts all component properties of a certain type to instances of another configured Component.
 class ComponentModifierBase
          Base class for ComponentModifier implementations
 class LabelSeparateModifier
          Pulls Label instances out of a contained field so they will be placed separately in the LayoutManager
 

Uses of Ordered in org.kuali.rice.krad.uif.util
 

Methods in org.kuali.rice.krad.uif.util that return types with arguments of type Ordered
static List<? extends Ordered> ComponentUtils.sort(List<? extends Ordered> items, int defaultOrderSequence)
          Performs sorting logic of the given list of Ordered instances by its order property
 

Method parameters in org.kuali.rice.krad.uif.util with type arguments of type Ordered
static List<? extends Ordered> ComponentUtils.sort(List<? extends Ordered> items, int defaultOrderSequence)
          Performs sorting logic of the given list of Ordered instances by its order property
 

Uses of Ordered in org.kuali.rice.krad.uif.view
 

Classes in org.kuali.rice.krad.uif.view that implement Ordered
 class DocumentView
          View type for KRAD documents
 class FormView
          Provides configuration for View instances that render an HTML form
 class InquiryView
          Type of View that provides a read-only display of a record of data (object instance)
 class LookupView
          View type for Maintenance documents
 class MaintenanceDocumentView
          View type for Maintenance documents
 class TransactionalDocumentView
          View type for Transactional documents
 class View
          Root of the component tree which encompasses a set of related GroupContainer instances tied together with a common page layout and navigation.
 

Uses of Ordered in org.kuali.rice.krad.uif.widget
 

Subinterfaces of Ordered in org.kuali.rice.krad.uif.widget
 interface Widget
          Components that provide a user interface function (besides the basic form handing) should implement the widget interface
 

Classes in org.kuali.rice.krad.uif.widget that implement Ordered
 class BlockUI
          BlockUI element is used within the view element for managing element/page blocking attributes
 class BreadCrumbs
          The breadcrumb widget contains various settings for setting up Breadcrumb/History support on the view
 class DatePicker
          Used for rendering a calendar in the UI that can be used to selected dates for field values
 class Disclosure
          Decorates a group with collapse/expand functionality
 class Growls
          Growls sets up settings for growls global to the current view and its pages
 class Help
          Widget that renders help on a component
 class Inquiry
          Widget for rendering an Inquiry link or DirectInquiry action field
 class LightBox
          Used for rendering a lightbox in the UI to display action links in dialog popups
 class QuickFinder
          Widget for navigating to a lookup from a field (called a quickfinder)
 class Reorderer
          Allows client-side reordering of the group contents
 class RichTable
          Decorates a HTML Table client side with various tools
 class Scrollpane
          Decorates a group with scroll functionality
 class Spinner
          Widget that decorates a control transforming into a spinner
 class Suggest
          Widget that provides dynamic select options to the user as they are entering the value (also known as auto-complete)
 class Tabs
          Widget used for configuring tab options, use componentOptions for most options.
 class Tooltip
          Widget that renders a Tooltip on a component
 class Tree
          Widget component for rendering a Tree
 class WidgetBase
          Base class for Widgets
 



Copyright © 2005-2012 The Kuali Foundation. All Rights Reserved.