|
|
 |
| Javascript How-To Ask your "How do I do this with Javascript?" questions here. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Javascript How-To section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

June 27th, 2006, 11:08 AM
|
|
Friend of Wrox
|
|
Join Date: Apr 2005
Location: Mumbai, Maharastra, India.
Posts: 318
Thanks: 2
Thanked 0 Times in 0 Posts
|
|
Enable Radio when check on Checkbox...
Why this Javaspt not working?
-------------
<tr><td><input type="checkbox" name="ExcelC" onclick="javascript:getElementById('Excel').disabl ed='false'"><b> In Excel</b></td></tr>
<tr>
<td><input type="radio" name="Excel" value="Monthly" disabled="true"><b>Monthly</b></td>
<td><input type="radio" name="Excel" value="Weekly" disabled="true"><b>Weekly</b></td>
<td><input type="radio" name="Excel" value="Weekly" disabled="true"><b>Weekly Breaks</b></td>
Rupen Anjaria.:)
------------------
We CAN'T avoid problems, but can solve it.
__________________
Rupen Anjaria.[:)]
------------------
It is not difficult to be on TOP...It is difficult when you carry Truth,Commitment and Transparency with you.
|

June 27th, 2006, 02:50 PM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Location: Camby, IN, USA.
Posts: 1,697
Thanks: 0
Thanked 1 Time in 1 Post
|
|
Code:
td><input type="checkbox" name="ExcelC" onclick="document.getElementById('excel-monthly').disabled=false;document.getElementById('excel-weekly').disabled=false;document.getElementById('excel-weekly-breaks').disabled=false;"><b> In Excel</b></td></tr>
<tr>
<td><input type="radio" name="Excel" value="Monthly" disabled="true" id='excel-monthly'><b>Monthly</b></td>
<td><input type="radio" name="Excel" value="Weekly" disabled="true" id='excel-weekly'><b>Weekly</b></td>
<td><input type="radio" name="Excel" value="Weekly" disabled="true" id='excel-weekly-breaks'><b>Weekly Breaks</b></td>
HTH!
Regards,
Rich
--
Author,
Beginning CSS: Cascading Style Sheets For Web Design
CSS Instant Results
http://www.catb.org/~esr/faqs/smart-questions.html
|

June 28th, 2006, 05:44 AM
|
|
Friend of Wrox
|
|
Join Date: Apr 2005
Location: Mumbai, Maharastra, India.
Posts: 318
Thanks: 2
Thanked 0 Times in 0 Posts
|
|
It is not working error reads as "document.getElementById(...) is null or not an object."
Any idea...?
Rupen Anjaria.:)
------------------
We CAN'T avoid problems, but can solve it.
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |