Popup Window in Workflow

@Aco_Krivo Happy to hear, thanks for the feedback :slight_smile:

Is there also the possibility that the input is inserted in all lines? Or do i always have
to type the date for every line?

Sure – here’s two ideas how to do it:

  • Use the second variant in the example workflow which works via flow variables as a foundation. Use a Variable to Table Column node to append the value from the flow variable to the table.

  • When you use the first example, modify the code in the Java Snippet node as follows:

    // Your custom variables:
    String text;
    
    // -----------------------------
    
    // Enter your code here:
    if (text == null) {
       text = javax.swing.JOptionPane.showInputDialog(null, "Hello human, what’s your name?");
    }
    
    out_name = text;
    

Hope this helps! :slight_smile:

–Philipp

PS: I have updated the workflow on my NodePit space with two examples for what I described above.

4 Likes