
07-07-2010, 06:59 PM
|
 |
|
|
Join Date: Apr 2008
Location: USA
Posts: 112
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
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 
|
Marry me
|