开发者

Popup on editing selective textboxes possible?

开发者 https://www.devze.com 2023-01-26 19:16 出处:网络
I have an issue with a popup in Asp开发者_StackOverflow社区.net using AJAX. Is it possible to show one kind of popup when

I have an issue with a popup in Asp开发者_StackOverflow社区.net using AJAX. Is it possible to show one kind of popup when the user edits few textboxes and the other kind of popup for the remaining textboxes.

I guess it is possible with some javascript function. Couls someone help me out?

Thanks in advance!


Can't you simply add the following javascript onfocus of the textboxes' which need popup1

$find('modalpopup1').show();

and analogous on the other textboxus' onfocus which need popup2 to show

$find('modalpopup2').show();
0

精彩评论

暂无评论...
验证码 换一张
取 消