本文整理汇总了Java中org.apache.wicket.ajax.attributes.AjaxRequestAttributes.setMethod方法的典型用法代码示例。如果您正苦于以下问题:Java AjaxRequestAttributes.setMethod方法的具体用法?Java AjaxRequestAttributes.setMethod怎么用?Java AjaxRequestAttributes.setMethod使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.wicket.ajax.attributes.AjaxRequestAttributes
的用法示例。
在下文中一共展示了AjaxRequestAttributes.setMethod方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: updateAjaxAttributes
import org.apache.wicket.ajax.attributes.AjaxRequestAttributes; //导入方法依赖的package包/类
@Override
protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
super.updateAjaxAttributes(attributes);
attributes.setMethod(Method.POST);
String script = String.format(""
+ "return {mouseX: $('#%s').data('mouseX'), mouseY: $('#%s').data('mouseY')};",
getMarkupId(), getMarkupId());
attributes.getDynamicExtraParameters().add(script);
}
示例2: updateAjaxAttributes
import org.apache.wicket.ajax.attributes.AjaxRequestAttributes; //导入方法依赖的package包/类
@Override
protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
super.updateAjaxAttributes(attributes);
attributes.setMethod(Method.POST);
/* Allows all sort of things to work properly:
* * allows clicks on labels to work properly
* * makes the radio/check buttons properly change their visual aspect on IE.
*/
attributes.setPreventDefault(false);
if (choice) {
// For explanations, see: getUniqueEventName(), getCallbackScript(), postprocessConfiguration()
attributes.setEventNames(getUniqueEventName());
// Copied from AjaxFormChoiceComponentUpdatingBehavior
attributes.setSerializeRecursively(true);
attributes.getAjaxCallListeners().add(new AjaxCallListener() {
private static final long serialVersionUID = 1L;
@Override
public CharSequence getPrecondition(Component component) {
return String.format("return attrs.event.target.name === '%s'", getFormComponent().getInputName());
}
});
}
}
示例3: updateAjaxAttributes
import org.apache.wicket.ajax.attributes.AjaxRequestAttributes; //导入方法依赖的package包/类
@Override
protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
super.updateAjaxAttributes(attributes);
attributes.setMethod(Method.POST);
}
示例4: updateWbActionAttributes
import org.apache.wicket.ajax.attributes.AjaxRequestAttributes; //导入方法依赖的package包/类
@Override
protected void updateWbActionAttributes(AjaxRequestAttributes attributes) {
attributes.setMethod(Method.POST);
}