Uses of Class
org.odlabs.wiquery.core.javascript.JsStatement

Packages that use JsStatement
org.odlabs.wiquery.core   
org.odlabs.wiquery.core.behavior   
org.odlabs.wiquery.core.effects   
org.odlabs.wiquery.core.events   
org.odlabs.wiquery.core.javascript   
org.odlabs.wiquery.ui.accordion   
org.odlabs.wiquery.ui.autocomplete   
org.odlabs.wiquery.ui.button   
org.odlabs.wiquery.ui.core   
org.odlabs.wiquery.ui.datepicker   
org.odlabs.wiquery.ui.datepicker.scope   
org.odlabs.wiquery.ui.dialog   
org.odlabs.wiquery.ui.dialog.util   
org.odlabs.wiquery.ui.draggable   
org.odlabs.wiquery.ui.droppable   
org.odlabs.wiquery.ui.position   
org.odlabs.wiquery.ui.progressbar   
org.odlabs.wiquery.ui.resizable   
org.odlabs.wiquery.ui.selectable   
org.odlabs.wiquery.ui.slider   
org.odlabs.wiquery.ui.sortable   
org.odlabs.wiquery.ui.tabs   
org.odlabs.wiquery.ui.themes   
 

Uses of JsStatement in org.odlabs.wiquery.core
 

Methods in org.odlabs.wiquery.core that return JsStatement
 JsStatement IWiQueryPlugin.statement()
          Returns the main JsStatement used to create the plugin.
 

Uses of JsStatement in org.odlabs.wiquery.core.behavior
 

Methods in org.odlabs.wiquery.core.behavior that return JsStatement
abstract  JsStatement WiQueryAbstractBehavior.statement()
           
abstract  JsStatement WiQueryAbstractAjaxBehavior.statement()
           
 

Uses of JsStatement in org.odlabs.wiquery.core.effects
 

Methods in org.odlabs.wiquery.core.effects that return JsStatement
 JsStatement WiqueryAjaxEffectBehavior.statement()
           
 JsStatement EffectBehavior.statement()
           
 

Uses of JsStatement in org.odlabs.wiquery.core.events
 

Methods in org.odlabs.wiquery.core.events that return JsStatement
 JsStatement WiQueryEventBehavior.statement()
           
 

Uses of JsStatement in org.odlabs.wiquery.core.javascript
 

Methods in org.odlabs.wiquery.core.javascript that return JsStatement
 JsStatement JsStatement.$()
          Appends the jQuery's $ function to the current JsStatement.
 JsStatement JsQuery.$()
           
 JsStatement JsStatement.$(org.apache.wicket.Component context)
          Same method as $(Component, String) with an empty selector.
 JsStatement JsStatement.$(org.apache.wicket.Component context, String selector)
          Appends the jQuery's $ function to the current JsStatement.
 JsStatement JsQuery.$(String selector)
          Same as JsQuery.$() but with a specified CSS selector.
 JsStatement JsStatement.addClass(String className)
          Binds the addClass statement.
 JsStatement JsStatement.after(CharSequence html)
          Binds the after statement.
 JsStatement JsStatement.append(CharSequence charSequence)
          Appends the given CharSequence to this statement.
 JsStatement JsScopeContext.append(CharSequence javascriptCode)
          Creates a new JsStatement and append the given JavaScript code in this statement.
 JsStatement JsStatement.attr(String key, JsScope computedValue)
          Binds the attr statement.
 JsStatement JsStatement.attr(String key, String value)
          Binds the attr statement.
 JsStatement JsStatement.before(CharSequence html)
          Binds the before statement.
 JsStatement JsStatement.chain(ChainableStatement chainableStatement)
          Chains a function call to this JsStatement.
 JsStatement JsStatement.chain(CharSequence statementLabel, CharSequence... statementArgs)
          Chains a function call to this JsStatement.
 JsStatement JsStatement.css(Options options)
          Binds the css statement.
 JsStatement JsStatement.css(String name, String value)
          Binds the css statement.
 JsStatement JsStatement.document()
          Appends $(document) to the statement.
 JsStatement JsQuery.document()
           
 JsStatement JsStatement.each(JsScope scope)
          Appends the each jQuery statement.
 JsStatement JsQuery.getStatement()
           
 JsStatement JsStatement.html(CharSequence htmlContents)
          Binds the html statement.
 JsStatement JsStatement.insertAfter(String expression)
          Binds the insertAfter statement.
 JsStatement JsStatement.insertBefore(String expression)
          Binds the insertBefore statement.
 JsStatement JsStatement.ready(JsScope scope)
          Appends the ready jQuery statement.
 JsStatement JsStatement.removeAttr(String key)
          Binds the removeAttr statement.
 JsStatement JsStatement.removeClass(String className)
          Binds the removeClass statement.
 JsStatement JsStatement.self()
          Appends the this keyword to this statement.
 JsStatement JsScopeContext.self()
          Creates a new JsStatement and append the "this" keyword in this statement.
 JsStatement JsStatement.toggleClass(String className)
          Binds the toggleClass statement.
 JsStatement JsScopeContext.var(String variable)
          Creates a new JsStatement and append the given variable name in this statement.
 

Methods in org.odlabs.wiquery.core.javascript with parameters of type JsStatement
static JsScope JsScope.quickScope(JsStatement jsStatement)
          Creates a default JsScope to execute the given statement.
static JsScopeEvent JsScopeEvent.quickScope(JsStatement jsStatement)
          Creates a default JsScopeEvent to execute the given statement.
 void JsQuery.setStatement(JsStatement jsStatement)
          FOR FRAMEWORK'S INTERNAL USE ONLY
 

Uses of JsStatement in org.odlabs.wiquery.ui.accordion
 

Methods in org.odlabs.wiquery.ui.accordion that return JsStatement
 JsStatement Accordion.activate(int index)
          Method to activate a content part of the Accordion programmatically.
 JsStatement Accordion.destroy()
          Method to destroy the accordion This will return the element back to its pre-init state.
 JsStatement Accordion.disable()
          Method to disable the accordion
 JsStatement Accordion.enable()
          Method to enable the accordion
 JsStatement Accordion.statement()
           
 JsStatement Accordion.widget()
          Method to returns the .ui-accordion element
 

Uses of JsStatement in org.odlabs.wiquery.ui.autocomplete
 

Methods in org.odlabs.wiquery.ui.autocomplete that return JsStatement
 JsStatement Autocomplete.close()
          Method to close the autocomplete This will return the element back to its pre-init state.
 JsStatement Autocomplete.destroy()
          Method to destroy the autocomplete This will return the element back to its pre-init state.
 JsStatement Autocomplete.disable()
          Method to disable the autocomplete
 JsStatement Autocomplete.enable()
          Method to enable the autocomplete
 JsStatement Autocomplete.search()
          Method to search the autocomplete
 JsStatement Autocomplete.search(String value)
          Method to search the autocomplete
 JsStatement Autocomplete.statement()
           
 JsStatement Autocomplete.widget()
          Method to returns the .ui-autocomplete element
 

Uses of JsStatement in org.odlabs.wiquery.ui.button
 

Methods in org.odlabs.wiquery.ui.button that return JsStatement
 JsStatement ButtonBehavior.destroy()
          Method to destroy the button This will return the element back to its pre-init state.
 JsStatement ButtonBehavior.disable()
          Method to disable the button
 JsStatement ButtonBehavior.enable()
          Method to enable the button
 JsStatement ButtonRadioSet.statement()
           
 JsStatement ButtonBehavior.statement()
           
 JsStatement ButtonCheckSet.statement()
           
 JsStatement ButtonBehavior.widget()
          Method to returns the .ui-autocomplete element
 

Uses of JsStatement in org.odlabs.wiquery.ui.core
 

Methods in org.odlabs.wiquery.ui.core with parameters of type JsStatement
static JsScopeUiEvent JsScopeUiEvent.quickScope(JsStatement jsStatement)
          Creates a default JsScopeUiEvent to execute the given statement.
 

Uses of JsStatement in org.odlabs.wiquery.ui.datepicker
 

Methods in org.odlabs.wiquery.ui.datepicker that return JsStatement
 JsStatement DatePicker.destroy()
          Method to destroy the datepicker This will return the element back to its pre-init state.
 JsStatement InlineDatePicker.destroy()
          Method to destroy the datepicker This will return the element back to its pre-init state.
 JsStatement DatePicker.disable()
          Method to disable the datepicker
 JsStatement InlineDatePicker.disable()
          Method to disable the datepicker
 JsStatement DatePicker.enable()
          Method to enable the datepicker
 JsStatement InlineDatePicker.enable()
          Method to enable the datepicker
 JsStatement DatePicker.getDate()
          Method returning the current date for the datepicker
 JsStatement InlineDatePicker.getDate()
          Method returning the current date for the datepicker
 JsStatement DatePicker.hide()
          Method to hide the datepicker
 JsStatement InlineDatePicker.hide()
          Method to hide the datepicker
 JsStatement DatePicker.hide(short speed)
          Method to hide the datepicker
 JsStatement InlineDatePicker.hide(short speed)
          Method to hide the datepicker
 JsStatement DatePicker.setDate(DateOption dateOption)
          Method to set the date of the datepicker
 JsStatement InlineDatePicker.setDate(DateOption dateOption)
          Method to set the date of the datepicker
 JsStatement DatePicker.show()
          Method to show the datepicker
 JsStatement InlineDatePicker.show()
          Method to show the datepicker
 JsStatement DatePicker.statement()
           
 JsStatement InlineDatePicker.statement()
           
 JsStatement DatePicker.widget()
          Method to returns the .ui-datepicker element
 

Uses of JsStatement in org.odlabs.wiquery.ui.datepicker.scope
 

Methods in org.odlabs.wiquery.ui.datepicker.scope with parameters of type JsStatement
static JsScopeUiDatePickerOnChangeEvent JsScopeUiDatePickerOnChangeEvent.quickScope(JsStatement jsStatement)
          Creates a default JsScopeUiDatePickerOnChangeEvent to execute the given statement.
static JsScopeUiDatePickerEvent JsScopeUiDatePickerEvent.quickScope(JsStatement jsStatement)
          Creates a default JsScopeUiDatePickerEvent to execute the given statement.
static JsScopeUiDatePickerDateTextEvent JsScopeUiDatePickerDateTextEvent.quickScope(JsStatement jsStatement)
          Creates a default JsScopeUiDatePickerDateTextEvent to execute the given statement.
 

Uses of JsStatement in org.odlabs.wiquery.ui.dialog
 

Methods in org.odlabs.wiquery.ui.dialog that return JsStatement
 JsStatement Dialog.close()
          Method to close the dialog
 JsStatement Dialog.destroy()
          Method to destroy the dialog This will return the element back to its pre-init state.
 JsStatement Dialog.disable()
          Method to disable the dialog
 JsStatement Dialog.enable()
          Method to enable the dialog
 JsStatement Dialog.isOpen()
          Method returning true if the dialog is currently open
 JsStatement Dialog.moveToTop()
          Method to move to top the dialog
 JsStatement Dialog.open()
          Method to open the dialog
 JsStatement Dialog.statement()
           
 JsStatement Dialog.widget()
          Method to returns the .ui-dialog element
 

Uses of JsStatement in org.odlabs.wiquery.ui.dialog.util
 

Methods in org.odlabs.wiquery.ui.dialog.util that return JsStatement
 JsStatement DialogUtilsBehavior.errorDialog(String message)
          Method creating an error Dialog
 JsStatement WaitDialogStatements.getClose()
           
 JsStatement WaitDialogStatements.getOpen()
          the open statement
 JsStatement DialogUtilsBehavior.questionDialog(String message)
          Method creating a question Dialog
 JsStatement DialogUtilsBehavior.simpleDialog(String title, String message)
          Method creating a simple dialog
 JsStatement DialogUtilsBehavior.statement()
           
 JsStatement DialogUtilsBehavior.warningDialog(String message)
          Method creating a warning Dialog
 

Methods in org.odlabs.wiquery.ui.dialog.util with parameters of type JsStatement
 void WaitDialogStatements.setClose(JsStatement close)
          Set the close statement
 void WaitDialogStatements.setOpen(JsStatement open)
          Set the open statement
 

Constructors in org.odlabs.wiquery.ui.dialog.util with parameters of type JsStatement
WaitDialogStatements(JsStatement open, JsStatement close)
          Constructor
 

Uses of JsStatement in org.odlabs.wiquery.ui.draggable
 

Methods in org.odlabs.wiquery.ui.draggable that return JsStatement
 JsStatement DraggableBehavior.destroy()
          Method to destroy the draggable This will return the element back to its pre-init state.
 JsStatement DraggableAjaxBehavior.destroy()
          Method to destroy the draggable This will return the element back to its pre-init state.
 JsStatement DraggableBehavior.disable()
          Method to disable the draggable
 JsStatement DraggableAjaxBehavior.disable()
          Method to disable the draggable
 JsStatement DraggableBehavior.enable()
          Method to enable the draggable
 JsStatement DraggableAjaxBehavior.enable()
          Method to enable the draggable
 JsStatement DraggableBehavior.statement()
           
 JsStatement DraggableAjaxBehavior.statement()
           
 JsStatement DraggableBehavior.widget()
          Method to returns the .ui-draggable element
 JsStatement DraggableAjaxBehavior.widget()
          Method to returns the .ui-draggable element
 

Uses of JsStatement in org.odlabs.wiquery.ui.droppable
 

Methods in org.odlabs.wiquery.ui.droppable that return JsStatement
 JsStatement DroppableBehavior.destroy()
          Method to destroy the droppable This will return the element back to its pre-init state.
 JsStatement DroppableAjaxBehavior.destroy()
          Method to destroy the droppable This will return the element back to its pre-init state.
 JsStatement DroppableBehavior.disable()
          Method to disable the droppable
 JsStatement DroppableAjaxBehavior.disable()
          Method to disable the droppable
 JsStatement DroppableBehavior.enable()
          Method to enable the droppable
 JsStatement DroppableAjaxBehavior.enable()
          Method to enable the droppable
 JsStatement DroppableBehavior.statement()
           
 JsStatement DroppableAjaxBehavior.statement()
           
 JsStatement DroppableBehavior.widget()
          Method to returns the .ui-droppable element
 JsStatement DroppableAjaxBehavior.widget()
          Method to returns the .ui-droppable element
 

Uses of JsStatement in org.odlabs.wiquery.ui.position
 

Methods in org.odlabs.wiquery.ui.position that return JsStatement
 JsStatement PositionBehavior.statement()
           
 

Methods in org.odlabs.wiquery.ui.position with parameters of type JsStatement
static JsScopePositionEvent JsScopePositionEvent.quickScope(JsStatement jsStatement)
          Creates a default JsScopePositionEvent to execute the given statement.
 

Uses of JsStatement in org.odlabs.wiquery.ui.progressbar
 

Methods in org.odlabs.wiquery.ui.progressbar that return JsStatement
 JsStatement ProgressBar.decrement()
          Method to decrement the value of the progressBar
 JsStatement ProgressBar.decrement(int decrement)
          Method to decrement the value of the progressBar
 JsStatement ProgressBar.destroy()
          Method to destroy the progressBar This will return the element back to its pre-init state.
 JsStatement ProgressBar.disable()
          Method to disable the progressBar
 JsStatement ProgressBar.enable()
          Method to enable the progressBar
 JsStatement ProgressBar.increment()
          Method to increment the value of the progressBar
 JsStatement ProgressBar.increment(int increment)
          Method to increment the value of the progressBar
 JsStatement ProgressBar.statement()
           
 JsStatement ProgressBar.update()
           
 JsStatement ProgressBar.value()
          Method to get the current value of the progressBar
 JsStatement ProgressBar.value(int value)
          Method to set the current value of the progressBar
 JsStatement ProgressBar.widget()
          Method to returns the .ui-progressbar element
 

Uses of JsStatement in org.odlabs.wiquery.ui.resizable
 

Methods in org.odlabs.wiquery.ui.resizable that return JsStatement
 JsStatement ResizableAjaxBehavior.destroy()
          Method to destroy This will return the element back to its pre-init state.
 JsStatement ResizableBehavior.destroy()
          Method to destroy This will return the element back to its pre-init state.
 JsStatement ResizableAjaxBehavior.disable()
          Method to disable
 JsStatement ResizableBehavior.disable()
          Method to disable
 JsStatement ResizableAjaxBehavior.enable()
          Method to enable
 JsStatement ResizableBehavior.enable()
          Method to enable
 JsStatement ResizableAjaxBehavior.statement()
           
 JsStatement ResizableBehavior.statement()
           
 JsStatement ResizableAjaxBehavior.widget()
          Method to returns the .ui-resizable element
 JsStatement ResizableBehavior.widget()
          Method to returns the .ui-resizable element
 

Uses of JsStatement in org.odlabs.wiquery.ui.selectable
 

Methods in org.odlabs.wiquery.ui.selectable that return JsStatement
 JsStatement SelectableBehavior.destroy()
          Method to destroy This will return the element back to its pre-init state.
 JsStatement SelectableAjaxBehavior.destroy()
          Method to destroy This will return the element back to its pre-init state.
 JsStatement SelectableBehavior.disable()
          Method to disable
 JsStatement SelectableAjaxBehavior.disable()
          Method to disable
 JsStatement SelectableBehavior.enable()
          Method to enable
 JsStatement SelectableAjaxBehavior.enable()
          Method to enable
 JsStatement SelectableBehavior.refresh()
          Method to refresh
 JsStatement SelectableAjaxBehavior.refresh()
          Method to refresh
 JsStatement SelectableBehavior.statement()
           
 JsStatement SelectableAjaxBehavior.statement()
           
 JsStatement SelectableBehavior.widget()
          Method to returns the .ui-selectable element
 JsStatement SelectableAjaxBehavior.widget()
          Method to returns the .ui-selectable element
 

Uses of JsStatement in org.odlabs.wiquery.ui.slider
 

Methods in org.odlabs.wiquery.ui.slider that return JsStatement
 JsStatement Slider.destroy()
          Method to destroy the slider This will return the element back to its pre-init state.
 JsStatement Slider.disable()
          Method to disable the slider
 JsStatement Slider.enable()
          Method to enable the slider
 JsStatement Slider.statement()
           
 JsStatement Slider.value(int value)
          Method to set the current value of the slider
 JsStatement Slider.values()
          Method to get the values of the slider.
 JsStatement Slider.values(int index, int value)
          Method to set the values of the slider.
 JsStatement Slider.widget()
          Method to returns the .ui-slider element
 

Uses of JsStatement in org.odlabs.wiquery.ui.sortable
 

Methods in org.odlabs.wiquery.ui.sortable that return JsStatement
 JsStatement SortableBehavior.cancel()
          Method to cancel This will return the element back to its pre-init state.
 JsStatement SortableAjaxBehavior.cancel()
          Method to cancel This will return the element back to its pre-init state.
 JsStatement SortableBehavior.destroy()
          Method to destroy This will return the element back to its pre-init state.
 JsStatement SortableAjaxBehavior.destroy()
          Method to destroy This will return the element back to its pre-init state.
 JsStatement SortableBehavior.disable()
          Method to disable
 JsStatement SortableAjaxBehavior.disable()
          Method to disable
 JsStatement SortableBehavior.enable()
          Method to enable
 JsStatement SortableAjaxBehavior.enable()
          Method to enable
 JsStatement SortableBehavior.refresh()
          Method to refresh
 JsStatement SortableAjaxBehavior.refresh()
          Method to refresh
 JsStatement SortableBehavior.refreshPositions()
          Method to refresh positions
 JsStatement SortableAjaxBehavior.refreshPositions()
          Method to refresh positions
 JsStatement SortableBehavior.serialize()
          Method to serialize (in default mode)
 JsStatement SortableAjaxBehavior.serialize()
          Method to serialize (in default mode)
 JsStatement SortableBehavior.statement()
           
 JsStatement SortableAjaxBehavior.statement()
           
 JsStatement SortableBehavior.toArray()
          Method to serializes the sortable's item id's into an array of string
 JsStatement SortableAjaxBehavior.toArray()
          Method to serializes the sortable's item id's into an array of string
 JsStatement SortableBehavior.widget()
          Method to returns the .ui-sortable element
 JsStatement SortableAjaxBehavior.widget()
          Method to returns the .ui-sortable element
 

Uses of JsStatement in org.odlabs.wiquery.ui.tabs
 

Methods in org.odlabs.wiquery.ui.tabs that return JsStatement
 JsStatement Tabs.abort()
          Method to terminate all running tab ajax requests and animations This will return the element back to its pre-init state.
 JsStatement Tabs.add(int index, String title, org.apache.wicket.Component contentToAdd)
          Returns the JsStatement to add the given component in the tab panel.
 JsStatement Tabs.add(String title, org.apache.wicket.Component contentToAdd)
          Returns the JsStatement to add the given component at the end of the tab panel.
 JsStatement Tabs.add(String url, String label)
          Method to add a new tab This will return the element back to its pre-init state.
 JsStatement Tabs.add(String url, String label, int index)
          Method to add a new tab This will return the element back to its pre-init state.
 JsStatement JQueryCookieOption.deleteCookie()
          Method to delete the cookie This will return the element back to its pre-init state.
 JsStatement Tabs.destroy()
          Method to destroy the tabs This will return the element back to its pre-init state.
 JsStatement Tabs.disable()
          Method to disable the tabs
 JsStatement Tabs.disable(int index)
          Method to disable a tab
 JsStatement Tabs.enable()
          Method to enable the tabs
 JsStatement Tabs.enable(int index)
          Method to enable a tab
 JsStatement JQueryCookieOption.getCookie()
          Method to retrieve the cookie This will return the element back to its pre-init state.
 JsStatement Tabs.length()
          Method retrieving the number of tabs of the first matched tab pane
 JsStatement Tabs.load(int index)
          Method to reload the content of an Ajax tab programmatically
 JsStatement Tabs.remove(int index)
          Returns the JsStatement to remove the tab at the given index.
 JsStatement Tabs.rotate(int ms)
          Method to set up an automatic rotation through tabs of a tab pane
 JsStatement Tabs.rotate(int ms, boolean continuing)
          Method to set up an automatic rotation through tabs of a tab pane
 JsStatement Tabs.select(int index)
          Method to select a tab
 JsStatement JQueryCookieOption.setCookie()
          Method to set the cookie This will return the element back to its pre-init state.
 JsStatement Tabs.statement()
           
 JsStatement Tabs.url(int index, String url)
          Method to change the url from which an Ajax (remote) tab will be loaded
 JsStatement Tabs.widget()
          Method to returns the .ui-slider element
 

Uses of JsStatement in org.odlabs.wiquery.ui.themes
 

Methods in org.odlabs.wiquery.ui.themes that return JsStatement
static JsStatement ThemeUiHelper.hover(org.apache.wicket.Component component)
          Method to get the JsStatement to insert the hover style on your Component
 



Copyright © 2012. All Rights Reserved.