This is a discussion on "display an alert messages recursively by clicking a checkbox" within the JavaScript Forum section. This forum, and the thread "display an alert messages recursively by clicking a checkbox are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
display an alert messages recursively by clicking a checkbox
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
display an alert messages recursively by clicking a checkbox
Hi,
Am using datagrid concept in a JSP page. When I click on a checkbox from the datagrid a timer will start. after 5mins I need to display an alert message along with an ID which is the value of that checkbox. like that I can click on any checkbox at any time. I've already implemented a code for it. when am clicking 2 checkboxes am getting 2 alert messages but with recently selected checkbox value instead of individual IDs. Here is the script i've used var s; function SelRecord(forms,str) { var max=eval("forms."+str+".length"); if (max) { for (var idx = 0; idx < max; idx++) { if (eval("forms."+str+"[" + idx + "].checked") == true) { s=forms.rd[idx].value; var t=setTimeout('alert(s+"dilatation complete")',5000); } } } } Please.... Can anyone gimme a solution for this.....Hi, Am using datagrid concept in a JSP page. When I click on a checkbox from the datagrid a timer will start. after 5mins I need to display an alert message along with an ID which is the value of that checkbox. like that I can click on any checkbox at any time. I've already implemented a code for it. when am clicking 2 checkboxes am getting 2 alert messages but with recently selected checkbox value instead of individual IDs. Here is the script i've used var s; function SelRecord(forms,str) { var max=eval("forms."+str+".length"); if (max) { for (var idx = 0; idx < max; idx++) { if (eval("forms."+str+"[" + idx + "].checked") == true) { s=forms.rd[idx].value; var t=setTimeout('alert(s+"dilatation complete")',5000); } } } } Please.... Can anyone gimme a solution for this..... |
|
|
![]() |
| Tags |
| javascript |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Alert Box | acrikey | JavaScript Forum | 4 | Mar 25th, 2008 23:23 |
| Form error messages help | psycho wolvesbane | JavaScript Forum | 0 | Mar 21st, 2008 14:50 |
| Report Spam Received in your Private Messages | Ed | Webforumz Cafe | 0 | Feb 15th, 2008 14:03 |
| php message board - delete inappropriate messages | Gabriele | PHP Forum | 9 | Aug 26th, 2007 13:01 |
| Private Messages | spinal007 | Webforumz Suggestions and Feedback | 4 | Sep 26th, 2004 16:02 |