Skip to main content
Nintex Community Menu Bar
Question

Show popup soon after field tab out

  • July 10, 2024
  • 2 replies
  • 1 view
  • Translate

Forum|alt.badge.img+2

Hi Team,

Could you please help me on below requirement,

Is it possible to show a popup soon after tab out from a field?

Requirement is, As seen below screenshot we have 3 fields which are calculated among them (if I update  value in EST.MKT BUDGET  then reaming  two field values  will update based on behind calculation)

We would like show a popup to select a field among 2 fields (assuming 2 fields in pop up with radio button) for user friendly, then the selected field value will be recalculated in the main page instead of popup (Showing a popup with 2 fields to select which field value to get recalculate based on the other field value which we given in main page).

Will be possible from skuid option (I did some trial error but no luck), please help me some input.

Main Requirement: Need to display a pop up with two radio buttons on update and tab out of any field.

Regard’

61e415542ddf273e851abcc54c76c8290c6a6e4a.png
Did this topic help you find an answer to your question?

2 replies

Forum|alt.badge.img+10

Kailas,

There is a very nice write up of how to generate a popup using JavaScript in this community post-> https://community.skuid.com/t/trigger-popup-from-javascript

Here is some code that will capture the ‘tab’ key.  Add this as an ‘Inline’ snippet (one that runs on the page load).  You’ll also need to add a CSS Class to your field in the field editor so you can target the field you want to run this against.  In my example the CSS Class I added is ‘firstnm’.

(function(skuid){
    var $ = skuid.$;
    $(document.body).one(‘pageload’,function(){
        //handle tab pressed on field
        $(‘.firstnm input’).keydown(function (e) {
          if (e.which == 9) {
            console.log(‘Tab key pressed on field’);
            /*run your pop up code
            */
          }
        });
    });
})(skuid);

Thanks,

Bill

Translate

Forum|alt.badge.img+2
  • Author
  • 9 replies
  • July 10, 2024

Hi Bill,

Thanks for your quick turnaround, I will try on your inputs.

Thanks

Kailas

Translate

Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings