All Projects → astrapi69 → jaulp-wicket

astrapi69 / jaulp-wicket

Licence: Apache-2.0 License
This project is a collection of Apache Wicket components and utilities.

Programming Languages

java
68154 projects - #9 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to jaulp-wicket

MOLH
Localization helper for iOS apps mainly focusing on the LTR/RTL issue
Stars: ✭ 104 (+642.86%)
Mutual labels:  internationalization
wlc
Weblate command line client
Stars: ✭ 22 (+57.14%)
Mutual labels:  internationalization
rc-dock
Dock Layout for React Component
Stars: ✭ 318 (+2171.43%)
Mutual labels:  panel
i18n
internationalize projects to Arabic
Stars: ✭ 67 (+378.57%)
Mutual labels:  internationalization
rjax
base on rxjs awesome ajax library
Stars: ✭ 63 (+350%)
Mutual labels:  ajax
helloworld-web
Hello World web application in 39 different ways in Java
Stars: ✭ 18 (+28.57%)
Mutual labels:  wicket
phoenix ujs
Unobtrusive vanilla js toolset to simplify Phoenix framework (and other frameworks) usage
Stars: ✭ 38 (+171.43%)
Mutual labels:  ajax
php-ajax
A simple Ajax App with PHP backend
Stars: ✭ 53 (+278.57%)
Mutual labels:  ajax
tr4n5l4te
Use Google Translate without an API key.
Stars: ✭ 32 (+128.57%)
Mutual labels:  internationalization
blogs
Demo application for blog posts at www.wicketinaction.com
Stars: ✭ 56 (+300%)
Mutual labels:  wicket
pydantic-i18n
pydantic-i18n is an extension to support an i18n for the pydantic error messages.
Stars: ✭ 32 (+128.57%)
Mutual labels:  internationalization
Angular-Gulp-Boilerplate
Clean but full-featured AngularJS boilerplate using Gulp workflow and best practices
Stars: ✭ 30 (+114.29%)
Mutual labels:  internationalization
yii2-ajaxform
submit ActiveForm via ajax
Stars: ✭ 20 (+42.86%)
Mutual labels:  ajax
grunt-assemble-i18n
Assemble middleware for adding i18n support to projects.
Stars: ✭ 25 (+78.57%)
Mutual labels:  internationalization
intl-format
A wrapper library for PHP to format and internationalize values in messages like sprintf
Stars: ✭ 12 (-14.29%)
Mutual labels:  internationalization
zwave-core
Flexible Z-Wave Service Server - Access your Z-Wave nodes fast and independent - Planned/supported: REST-API, Browser UI, MQTT* - Perfect for maintaining big node-numbers, drop-in ozwcp replacement!
Stars: ✭ 19 (+35.71%)
Mutual labels:  ajax
yii-fullajax
fullajax Yii playground
Stars: ✭ 21 (+50%)
Mutual labels:  ajax
axios-endpoints
Axios endpoints helps you to create a more concise endpoint mapping with axios.
Stars: ✭ 41 (+192.86%)
Mutual labels:  ajax
GetCurrency
List all currencies available in NSLocale programmatically using swift 3
Stars: ✭ 18 (+28.57%)
Mutual labels:  internationalization
igloo-parent
Our core toolbox based on Spring, Hibernate, Wicket and Bootstrap.
Stars: ✭ 15 (+7.14%)
Mutual labels:  wicket

Overview

The library jaulp-wicket is a collection of Apache Wicket components and utilities.

The components are loosely coupled and can be easily integrated into an existing Apache Wicket application.

The components are also designed to be customised so the user can provide they own components over factory methods.

License

The source code comes under the liberal Apache License V2.0, making jaulp-wicket great for all types of wicket applications.

javadoc

jaulp-wicket-annotated-header-contributors Javadocs

jaulp-wicket-base Javadocs

jaulp-wicket-behaviors Javadocs

jaulp-wicket-components Javadocs

jaulp-wicket-data-provider Javadocs

jaulp-wicket-dialogs Javadocs

jaulp-wicket-dropdownchoices Javadocs

Build status

Build Status

Maven Central

Maven Central

Maven projects and install

You can add the following maven dependencies to your project pom.xml if you want to import the library.

You can first define the version properties:

<properties>
	...
	<!-- JAULP-WICKET version -->
	<jaulp-wicket.version>7.8.0</jaulp-wicket.version>
	<jaulp-wicket-annotated-header-contributors.version>${jaulp-wicket.version}</jaulp-wicket-annotated-header-contributors.version>
	<jaulp-wicket-base.version>${jaulp-wicket.version}</jaulp-wicket-base.version>
	<jaulp-wicket-behaviors.version>${jaulp-wicket.version}</jaulp-wicket-behaviors.version>
	<jaulp-wicket-components.version>${jaulp-wicket.version}</jaulp-wicket-components.version>
	<jaulp-wicket-data-provider.version>${jaulp-wicket.version}</jaulp-wicket-data-provider.version>
	<jaulp-wicket-dialogs.version>${jaulp-wicket.version}</jaulp-wicket-dialogs.version>
	<jaulp-wicket-dropdownchoices.version>${jaulp-wicket.version}</jaulp-wicket-dropdownchoices.version>
	...
</properties>

Add the following maven dependency to your project pom.xml if you want to import annotated-header-contributors:

<dependency>
	<groupId>de.alpharogroup</groupId>
	<artifactId>jaulp-wicket-annotated-header-contributors</artifactId>
	<version>${jaulp-wicket-annotated-header-contributors.version}</version>
</dependency>

Add the following maven dependency to your project pom.xml if you want to import base:

<dependency>
	<groupId>de.alpharogroup</groupId>
	<artifactId>jaulp-wicket-base</artifactId>
	<version>${jaulp-wicket-base.version}</version>
</dependency>

Add the following maven dependency to your project pom.xml if you want to import behaviors:

<dependency>
	<groupId>de.alpharogroup</groupId>
	<artifactId>jaulp-wicket-behaviors</artifactId>
	<version>${jaulp-wicket-behaviors.version}</version>
</dependency>

Add the following maven dependency to your project pom.xml if you want to import components:

<dependency>
	<groupId>de.alpharogroup</groupId>
	<artifactId>jaulp-wicket-components</artifactId>
	<version>${jaulp-wicket-components.version}</version>
</dependency>

Add the following maven dependency to your project pom.xml if you want to import data-provider:

<dependency>
	<groupId>de.alpharogroup</groupId>
	<artifactId>jaulp-wicket-data-provider</artifactId>
	<version>${jaulp-wicket-data-provider.version}</version>
</dependency>

Add the following maven dependency to your project pom.xml if you want to import dialogs:

<dependency>
	<groupId>de.alpharogroup</groupId>
	<artifactId>jaulp-wicket-dialogs</artifactId>
	<version>${jaulp-wicket-dialogs.version}</version>
</dependency>

Add the following maven dependency to your project pom.xml if you want to import dropdownchoices:

<dependency>
	<groupId>de.alpharogroup</groupId>
	<artifactId>jaulp-wicket-dropdownchoices</artifactId>
	<version>${jaulp-wicket-dropdownchoices.version}</version>
</dependency>

Run Examples

Example projects are moved to the wicket-examples project.

You can run every example project by doing following steps. For instance if you want to start the examples for the project jaulp-wicket-components you do this:

First change to the directory and build the project:

cd jaulp-wicket-components-examples
mvn clean install

Running the example:

mvn jetty:run

Call then http://localhost:8080/

Another way is to start the example application programmaticly with jetty. In every example project there exists a start class with a main method that have the prefix Start**** and the suffix ****Examples.

Open Issues

Open Issues

Documentation

Want to Help and improve it?

The source code of jaulp-wicket are on GitHub. Please feel free to fork and send pull requests!

Create your own fork of astrapi69/jaulp-wicket/fork

To share your changes, submit a pull request.

Don't forget to add new units tests on your changes.

Contacting the Developer

Do not hesitate to contact the jaulp-wicket developers with your questions, concerns, comments, bug reports, or feature requests.

  • Feature requests, questions and bug reports can be reported at the issues page.

Note

No animals were harmed in the making of this library.

Donations

If you like this library, please consider a donation through paypal: PayPal this

or over bitcoin or bitcoin-cash with:

1Jzso5h7U82QCNmgxxSCya1yUK7UVcSXsW

or over ether with:

0xaB6EaE10F352268B0CA672Dd6e999C86344D49D8

or over flattr:

Flattr this

Similar projects

Here is a list of awesome projects that use wicket, extends or decorate it.

  • wicket-matchers Wicket 6 / Hamcrest 1.3 utility matchers
  • wicket-utils Useful components, models and other stuff for Wicket (mainly 6) projects
  • awesome-wicket A curated list of awesome projects powered by Apache Wicket
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].