net.sf.tacos.ajax
Interface AjaxSubmitInvocation

All Superinterfaces:
AjaxInvocation
All Known Implementing Classes:
AbstractSubmit, AjaxEventSubmit, AjaxImageSubmit, AjaxLinkSubmit, AjaxSubmit

public interface AjaxSubmitInvocation
extends AjaxInvocation

Hold parameters in an ajax call.

Author:
Felix Sun

Method Summary
 String getComponentId()
          The component Id used by script
 String getFunctionName()
          The javascript function name invoked when submit an form.
 String getHiddenId()
          The hidden form field id
 boolean isClientSideValidationEnabled()
          Wherther or not to use client side validation
 boolean isDeferred()
          Causes initial event connection to be deferred
 boolean isSubmitNormal()
          Whether to submit using non async IO
 
Methods inherited from interface net.sf.tacos.ajax.AjaxInvocation
getAjaxEngine, getAjaxLink, getBackLink, getEffects, getEncodingType, getForwardLink, getPopup, getPreEffects, getStatusElement, getUpdateComponents, getUpdateObject
 

Method Detail

getComponentId

String getComponentId()
The component Id used by script


getHiddenId

String getHiddenId()
The hidden form field id


isDeferred

boolean isDeferred()
Causes initial event connection to be deferred


isClientSideValidationEnabled

boolean isClientSideValidationEnabled()
Wherther or not to use client side validation


isSubmitNormal

boolean isSubmitNormal()
Whether to submit using non async IO


getFunctionName

String getFunctionName()
The javascript function name invoked when submit an form.