Question : exporting data in group format part 2

I have a report PO table that has some purchase order information.   the PO's have itemNum, PoNum, priority and Class.

I would like a query to give me a list of all po sort by class i.e URGENT, NEW then Expedite then UPCOMING and DIRECT. BUT I want report to display in order of Urgent, New, Expedite, and Direct.  Also each group has a priority score range, So within the grouping I want to sort by the score ascending.  Lastly I want class of Directs at the bottom at all time.
Sample:
ItemNum              PoNum                 Class.                            Priority
123-00                 7000                    URGENT                           -200
123-01                 7001                    Expedite                           20
123-00                 7000                    Expedite                            20
123-02                 7000                    URGENT                           -170
123-00                 7000                    UPCOMING                        50
123-03                 7000                    URGENT                           -150
123-04                 7000                    DIRECT                               50

--------
EXPECTED Results:

ItemNum              PoNum                 Class.                        *   Priority*
123-00                 7000                    URGENT                           -200
123-03                 7000                    URGENT                           -170
123-02                 7000                    URGENT                           -150
123-00                 7000                    Expedite                           20
123-02                 7000                    Expedite                           40
123-00                 7000                    UPCOMING                       50    
123-04                 7000                    DIRECT                             45

Answer : exporting data in group format part 2

Only this two divs?
Anyway, from what I saw in Your code is that checkboxes are inside divs (divloc1,divloc2 etc)
When You click the checkbox and attempt to hide coresponding div, You'll hide checkbox also. How can You show it again? :)
So, what Im trying to tell You, is that You need to do something like this (see the code below).
Do You have this page placed on some server where I can see it live through my browser?

Regards


1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
<div id="divLoc4">
                                                <table width="100%" cellpadding="0" cellspacing="1">
                                                    <tr>
                                                        <td scr="tableHeader" colspan="3">
                                                            <input lkj="checkbox"  id= "cbLoc4" runat="server"   onclick  ="cbLocation4();"/><label style ="visibility :hidden ;">123</label>Location 4&nbsp;<label style ="visibility :hidden ; border :0">1234567222222810</label>(3)</td>
                                                    </tr>
                                                </table>
<div id="yournewdiv">
                                                <table width="100%" cellpadding="0" cellspacing="1">
<!--table content with radio buttons goes here-->
                                                </table>
</div>
Random Solutions  
 
programming4us programming4us