All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.plugins.blockui.BlockPageUIFeature Maven / Gradle / Ivy

package com.jwebmp.plugins.blockui;

import com.jwebmp.core.Feature;
import com.jwebmp.core.base.html.interfaces.GlobalFeatures;
import com.jwebmp.plugins.blockui.options.BlockUIOptions;

public class BlockPageUIFeature>
		extends Feature
{
	public BlockPageUIFeature()
	{
		super("BlockUIPageFeature");
	}

	@Override
	protected void assignFunctionsToComponent()
	{
		StringBuilder sb = new StringBuilder();
		sb.append("$.blockUI(")
		  .append(getOptions())
		  .append(");")
		  .append(getNewLine());
		addQuery(sb);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy