also @ TechSpot: OCZ Vertex 450 SSD Review

Private message button/tickmark

Discussion in 'Site Feedback and Suggestions' started by Mictlantecuhtli, Apr 15, 2002.

Post New Reply
  1. Mictlantecuhtli TS Special Forces Posts: 4,916   +9

    I just happened to notice that there is a button/tickmark next to "Date/Time Sent", what does it do?

    Attached Files:

  2. poertner_1274 secroF laicepS topShceT Posts: 4,745

    That is so you can check them and then choose delete. So you don't delete ones you want to keep, or you can forward them to other people. Nothing too special. But in order to either delete or forward you have to check at least one of the boxes.
  3. Mictlantecuhtli TS Special Forces Posts: 4,916   +9

    Yes, of course I can select messages but there's a checkbox above messages, too, which doesn't seem to do anything. Is it just a bug?
  4. SNGX1275 TS Special Forces Posts: 11,893   +117

    I just looked at your screen shot. Are you refering to the box that doesn't have a date by it? It is supposed to select all when you check that. Possibly the browser you are using in *IX doesn't support that? Have you tried it with a different browser?
  5. Mictlantecuhtli TS Special Forces Posts: 4,916   +9

    Yep, it's JavaScript, that's why it doesn't work in NetPositive. Thanks for answering :)
    Code:
    function CheckCheckAll() {
    	var TotalBoxes = 0;
    	var TotalOn = 0;
    	for (var i=0;i<document.form.elements.length;i++) {
    		var e = document.form.elements[i];
    		if ((e.name != 'allbox') && (e.type=='checkbox')) {
    			TotalBoxes++;
    			if (e.checked) {
    				TotalOn++;
    			}
    		}
    	}
    	if (TotalBoxes==TotalOn) {
    		document.form.allbox.checked=true;
    	} else {
    		document.form.allbox.checked=false;
    	}
    }