This question is locked. New answers and comments are not allowed.
I have a screen that displays a record for editing. To keep the user from having to switch mindsets and return to the "list of records", ie. grid, I have a pop-up screen that allows the user to quickly search for the next record to edit. The search screen is a grid. Everything works well except I'd like to delay the binding of the pop-up until the screen is displayed.
I have to reset the grid upon pop-up to clear the previous search so I'm really calling the bind twice, once on the screens initial load and again right before it's made visible. Is there anyway to inhibit the initial call?
I could hack the initial call with a bogus parameter and have the binding return an empty result set but I'd rather not have the back and forth traffic as I'm hosting in a cloud and the network latency is one of the biggest issues.
My only other thought is to trap the call with jquery on the client side and return an empty set, but again another hack that I'd rather not do.
I have to reset the grid upon pop-up to clear the previous search so I'm really calling the bind twice, once on the screens initial load and again right before it's made visible. Is there anyway to inhibit the initial call?
I could hack the initial call with a bogus parameter and have the binding return an empty result set but I'd rather not have the back and forth traffic as I'm hosting in a cloud and the network latency is one of the biggest issues.
My only other thought is to trap the call with jquery on the client side and return an empty set, but again another hack that I'd rather not do.