You need to sign in to do that
Don't have an account?

pop-up window on button click to enter Status / Substatus
I know there is a way to pop-up a box when a button is clicked with an alert, is there a way to also add fields to that pop-up to have the user fill in?
Hi Staci
This may solve your requirement...
Thanks
Srinivas
All Answers
https://developer.mozilla.org/en-US/docs/Web/API/window.showModalDialog
http://msdn.microsoft.com/en-us/library/ie/ms536759(v=vs.85).aspx
Better option would be to implement a hovering DIV and keep the code in a single window, like how inline editing works today (try using enhanced list views to see how it works); showModalDialog is not uniform across all browsers, and has horrible side-effects. Despite being an ECMAScript feature, no browser seems to get it 100% right, and a custom popup dialog would be a better choice.
Hi Staci
This may solve your requirement...
Thanks
Srinivas