-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Tempus-Dominus v6 is added * Build should be fixed * Code clean-up * Consumers are added to config; Example page is improved * Dates are being validated onChange * Jar-based localization seems to be loaded * OnChangeAjaxBehavior seems to work * Code comment is added * Validation errors are being displayed * tempus-dominus-v5 is marked as deprecated; code clean-up * Non bundled bootstrap 5.3.2 version is used * Code related to OnChangeBehavior is simplified * Comments are addressed
- Loading branch information
Showing
34 changed files
with
2,425 additions
and
1,918 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
...ain/java/de/agilecoders/wicket/core/markup/html/references/PopperJavaScriptReference.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package de.agilecoders.wicket.core.markup.html.references; | ||
|
||
import de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference; | ||
|
||
/** | ||
* Represents Popper.js library. | ||
*/ | ||
public class PopperJavaScriptReference extends WebjarsJavaScriptResourceReference { | ||
private static final long serialVersionUID = 1L; | ||
|
||
/** | ||
* Singleton instance of this reference | ||
*/ | ||
private static final class Holder { | ||
private static final PopperJavaScriptReference INSTANCE = new PopperJavaScriptReference(); | ||
} | ||
|
||
/** | ||
* Private constructor. | ||
*/ | ||
private PopperJavaScriptReference() { | ||
super("popperjs__core/current/dist/umd/popper.js"); | ||
} | ||
|
||
/** | ||
* | ||
* @return the single instance of the resource reference | ||
*/ | ||
public static PopperJavaScriptReference instance() { | ||
return Holder.INSTANCE; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...et/extensions/markup/html/bootstrap/form/tempusdominus/AbstractTempusDominusWithIcon.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<wicket:panel xmlns:wicket="http://wicket.apache.org"> | ||
<input type="text" class="form-control" wicket:id="date"/> | ||
<span class="input-group-text" wicket:id="iconContainer"> | ||
<i wicket:id="icon"></i> | ||
</span> | ||
</wicket:panel> |
Oops, something went wrong.