In my java (spring-boot and vaadin flow ) application, I want to add a time picker. But I did not find any time picker for java. There has a component for polymer(enter link description here).How can I use it? And is there any component then pls help me out.
tnx in advance.
Java integration for the time picker is introduced in Vaadin 13, which was released as beta around one week ago and is scheduled to be final in about three weeks.
Related
I have a application that I am working on rolling out and need to do "onboarding". I need people to sign releases.
I am looking to intergrate a "e-signature" function - not just a simple Accept check box.
I have looked at options like esignlive and adobe esign.
I am not sure if anyone know of a service / tool / JAR/ something that i can incorporate the concept of "signing" an release online.
Thanks in advance.
FYI I did find this js library
https://github.com/szimek/signature_pad
I'm looking to build an App in Angular 4 that would allow components to be dynamically created from storage (database, url, server stored file). The goal is to allow users to build there own components to create custom dashboards to view data.
I've been looking through google and stackoverflow to see if something like this has been achieved, but I have not seen anything to point me in the right direction.
If this is possible would anyone be willing to explain or link me to a resource to help me get started on this?
Thank you in advance
You can check these out:
https://medium.com/front-end-hacking/dynamically-add-components-to-the-dom-with-angular-71b0cb535286
https://angular.io/guide/dynamic-component-loader
I prefer number 1 because it provides a very detailed & clear guide.
I am trying to update my app in the windows store with a new version. I am getting the error message in the UI:
This package is superseded by one or more higher-ranked packages.
The version number of the new binary is higher than the existing one. Here is what the version numbers look like in the store UI:
How can I raise the rank of the new version so that the store accepts it? What are the elements to package rank? I searched online for this but could not find the answer.
Thanks.
A day after first having the problem, I submitted a package numbered 2.0.6, which I had tried yesterday, and it went right in.
I tried to delete the original submission as suggested above, before trying submitting 2.0.6, but couldn't find a delete button. Maybe by opening the older one up in the UI I made the UI realize it was older. dunno.
I'm getting the following error when submitting my app in the Windows Phone Dev Center:
Couldn't save changes. We couldn't save the updated info at this time. Try again later. If you continue to get this message, contact support and provide the following ID: and specify current DateTime in UTC: .
This worked on the weekend and the submission passed but I found a few bugs that I wanted to fix before going public, so I cancelled the release and tried to upload a new one.
So far I've tried deleting the submission and creating a new one, renaming the upload file to make it shorter and even re-submitting the build that passed the first time. All attempts still failed.
Any assistance or suggestions appreciated!
Looks like the only recourse is support. Microsoft engineering "tweaked" something and now it is working. If you run into this, use the support link http://dev.windows.com/en-us/community/support.
I have known how to embed JavaFX content into Swing applications according to this Oracle Tutorial.
But now I want to add some Swing components to the JavaFX Scene. Is there any ideas about that?
Regards,
Qin
now it's possible to do that
what you need now is install jdk 8
because swing content in javafx is introduced in jdk8
#FXML
private SwingNode swingNode;
...
JasperPrint jasperPrint = JasperFillManager.fillReport(FileName, hash, connect);
swingNode.setContent(new JRViewer(jasperPrint));
oracle just add tutorial for this too
for the next you can follow this link
oracle tutorial embed swing in javaFX
I think it is not possible in JavaFX 2.*, but some people hava worked on it. Take a look here : http://www.jroller.com/neugens/entry/embed_swing_inside_javafx_2 . Maybe you will find what you want. :)