Forum: Java Dec 3rd, 2007 |
| Replies: 7 Views: 673 Re: Why Vector is synchronised? What this means is, if two threads attempt to access a
Vector it will be synchronized. One thread will have to wait until the
other thread is finished accessing the Vector. |
Forum: Java Dec 3rd, 2007 |
| Replies: 4 Views: 495 Re: very simple code You should post the solution even if you solved it yourself to help others potentially having the same issues.
Solution: Local variables need to be initialized with a value when declared. |
Forum: Java Dec 3rd, 2007 |
| Replies: 4 Views: 970 Re: ArrayList or Vector ? Well in relation to threads, I major difference is that a Vector is synchronized and an ArrayList is not synchronized. What this means is, if two threads attempt to access a
Vector it will be... |
Forum: JavaScript / DHTML / AJAX Dec 3rd, 2007 |
| Replies: 1 Views: 810 Re: new to JAVASCRIPT What you need to do the following:
1. Add the onchange event attribute to the 1st select tag
<select name="weatherStat" id="States" onchange="addNewValue();">
2. Create a javascript function... |
Forum: JSP Dec 3rd, 2007 |
| Replies: 2 Views: 2,505 |
Forum: JSP Dec 3rd, 2007 |
| Replies: 1 Views: 1,516 Re: dynamic treeview Hi,
Yeah, your right about the ajax element. Its simple enough if you use an existing toolkit like dojo.
This is what you want I believe, see:... |