org.wicketstuff.navigator.AjaxComponentScrollEventBehavior Maven / Gradle / Ivy
/**
*
Copyright 2012 Vineet Semwal
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.wicketstuff.navigator;
import org.apache.wicket.Component;
import org.apache.wicket.MarkupContainer;
import org.apache.wicket.ajax.attributes.AjaxCallListener;
import org.apache.wicket.ajax.attributes.AjaxRequestAttributes;
import org.wicketstuff.IQuickView;
import org.wicketstuff.RepeaterUtil;
/**
* behavior that can be attached to quickview's parent ,on scroll event will be fired if scroll-bar
* is moved to the bottom,for this to happen,you must specify the parent to have scroll in css by defining overflow-y property.
*
*you need to call {@link AjaxComponentScrollEventBehavior#addItemsForNextPage(IQuickView)} ()} when you implement {@link AjaxComponentScrollEventBehavior#onScroll(org.apache.wicket.ajax.AjaxRequestTarget)}
*
*
* @author Vineet Semwal
*
*/
public abstract class AjaxComponentScrollEventBehavior extends AjaxScrollEventBehaviorBase {
@Override
protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
super.updateAjaxAttributes(attributes);
attributes.getAjaxCallListeners().add(new ParentScrollListener());
}
public static class ParentScrollListener extends AjaxCallListener {
@Override
public CharSequence getPrecondition(Component component) {
super.getPrecondition(component);
String call=RepeaterUtil.get().isComponentScrollBarAtBottom((MarkupContainer) component);
return "return "+ call;
}
}
}