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

org.zkoss.zk.au.out.AuScrollIntoView Maven / Gradle / Ivy

There is a newer version: 10.0.0-jakarta
Show newest version
/* AuScrollIntoView.java

	Purpose:
		
	Description:
		
	History:
		Wed Apr  1 19:29:40     2009, Created by tomyeh

Copyright (C) 2009 Potix Corporation. All Rights Reserved.

This program is distributed under LGPL Version 2.1 in the hope that
it will be useful, but WITHOUT ANY WARRANTY.
*/
package org.zkoss.zk.au.out;

import org.zkoss.zk.ui.Component;

/**
 * Scrolls the ancestors to make the component visible.
 *
 * 

data[0]: the component. * * @author tomyeh * @since 3.6.1 */ public class AuScrollIntoView extends org.zkoss.zk.au.AuResponse { /** Constructor. * @param comp the component */ public AuScrollIntoView(Component comp) { super("scrollIntoView", comp); //component-independent (so we can scroll multiple elements at once) } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy