Quote:
Originally Posted by KURTZ
there is a trouble with the 3.8.x ... with this hack i can't select all the messages that i've in the box ...
|
Quote:
Originally Posted by Quantnet.org
Wow. thanks a lot.
I thought this is a bug in vb 3.8 and reported as such on vb.com 
|
Quote:
Originally Posted by vbboarder
Bug: when you update to VB 3.8, the messages are not highlighted when selected and the 'Go' button does not update with the # of messages selected. Also, the checkbox to select all messages do not work.
Solution: The gtpm_messagelistbit template needs to be updated with 2 changes to be VB 3.8 compatible. Go to 'Style Manager' -> 'Edit Templates' -> click on gtpm_messagelistbit and FIND:
Code:
<td class="alt1Active" id="m$pm[pmid]" width="100%">
.
REPLACE WITH:
Code:
<td class="alt1 alt1Active" id="m$pm[pmid]" width="100%">
.
FIND:
Code:
<input type="checkbox" name="pm[$pmid]" value="$groupid" />
.
REPLACE WITH:
Code:
<input type="checkbox" name="pm[$pmid]" id="pmlist_$pmid" value="$groupid" />
.
That's it! Now selected messages should be highlighted, the 'Go' button should update, and the check-all checkbox should work. Hope that helps 
|
Excellent. I was also having this problem and reported it to vB.com as a bug.
Princeton, will you update this for 3.8?