当前位置: 首页>>代码示例>>Java>>正文


Java AjaxRequestAttributes.setMethod方法代码示例

本文整理汇总了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);
}
 
开发者ID:jmfgdev,项目名称:gitplex-mit,代码行数:12,代码来源:DropdownLink.java

示例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());
			}
		});
	}
}
 
开发者ID:openwide-java,项目名称:owsi-core-parent,代码行数:29,代码来源:FormComponentChangeAjaxEventBehavior.java

示例3: updateAjaxAttributes

import org.apache.wicket.ajax.attributes.AjaxRequestAttributes; //导入方法依赖的package包/类
@Override
protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
	super.updateAjaxAttributes(attributes);
	attributes.setMethod(Method.POST);
}
 
开发者ID:jmfgdev,项目名称:gitplex-mit,代码行数:6,代码来源:AbstractPostAjaxBehavior.java

示例4: updateWbActionAttributes

import org.apache.wicket.ajax.attributes.AjaxRequestAttributes; //导入方法依赖的package包/类
@Override
protected void updateWbActionAttributes(AjaxRequestAttributes attributes) {
	attributes.setMethod(Method.POST);
}
 
开发者ID:apache,项目名称:openmeetings,代码行数:5,代码来源:WbPanel.java


注:本文中的org.apache.wicket.ajax.attributes.AjaxRequestAttributes.setMethod方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。