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

org.dominokit.domino.ui.datatable.events.BodyScrollEvent Maven / Gradle / Ivy

There is a newer version: 1.0.139
Show newest version
package org.dominokit.domino.ui.datatable.events;

import org.dominokit.domino.ui.datatable.plugins.BodyScrollPlugin;

public class BodyScrollEvent implements TableEvent {

    public static final String BODY_SCROLL ="data-table-body-scroll";

    private final BodyScrollPlugin.ScrollPosition scrollPosition;

    public BodyScrollEvent(BodyScrollPlugin.ScrollPosition scrollPosition) {
        this.scrollPosition = scrollPosition;
    }

    @Override
    public String getType() {
        return BODY_SCROLL;
    }

    public BodyScrollPlugin.ScrollPosition getScrollPosition() {
        return scrollPosition;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy