You're using jQuery ( http://jquery.com/ )and the jQuery Tablesorter plugin.
You're not using jQuery UI ( http://jqueryui.com/ ) which is the topic of
this forum. For more, see:
http://rdworth.org/blog/2008/10/jquery-plugins-and-jquery-ui/

<http://rdworth.org/blog/2008/10/jquery-plugins-and-jquery-ui/>For general
questions about jQuery and jQuery plugins (other than jQuery UI plugins),
please use the main jQuery list:

http://groups.google.com/group/jquery-en

Thanks.

<http://groups.google.com/group/jquery-en>- Richard

On Fri, Aug 28, 2009 at 12:19 AM, RPS <[email protected]> wrote:

>
> Hi,
>
> I have used jquery, i have not shown that in my earlier mail. Please
> let me know hot to do this. Its urgent for me.
>
> <SCRIPT LANGUAGE="JavaScript1.2" SRC="js/jquery-1.3.2.min.js"
> TYPE="text/javascript">
> <SCRIPT LANGUAGE="JavaScript1.2" SRC="js/jquery.tablesorter.js"
> TYPE="text/javascript">
> <script>
> $("#memberSearchInfoTable").tablesorter({sortList:[[1,0], [0,0]]});
> </script>
>
> Thanks,
> Ramya
>
> On Aug 18, 11:05 pm, Jörn Zaefferer <[email protected]>
> wrote:
> > How is this related to jQuery UI? Your example doesn't have any jQuery UI
> code.
> >
> > Jörn
> >
> >
> >
> > On Tue, Aug 18, 2009 at 11:11 AM, RPS<[email protected]> wrote:
> >
> > > Hi,
> >
> > > I want to know how to implement sorting, if i need to skip alternative
> > > rows. I am able to implement basic sorting. Its urgent and important
> > > for me.
> >
> > > My TD will havetablein it.
> >
> > > Example : First row will have all the data, second row will have the
> > > comments, will span the columns. These two rows should be treated as
> > > one row. Every row will have comments that comes as the next row. When
> > > sorting is done it should be based on the first row data on which
> > > headers are definedm but the comment row should always fall next to
> > > that.
> >
> > > Code:
> > > <tableborder="0">
> > >        <tr>
> > >                <td colspan=7 align="left">
> > > <input id="chkDispFuture" type="checkbox" name="chkDispFuture"
> > > style="border:none" <b>Display Future dated</b>
> > >                </td>
> > >        </tr>
> > >        <tr>
> > >                <td width="110" align="middle" class="tableheader"><font
> > > color="#397EB5">Member</font><br><a  href="javascript:sortBy
> > > ('memNo')"><u>Number</u></a>&nbsp;&nbsp;&nbsp;&nbsp;<a
> > > href="javascript:sortBy('prodSub')"><u>Account</u></a></td>
> > >                <td width="210" align="left" class="tableheader"><a
> > > href="javascript:sortBy('memName')" ><u>Member Name</u></a></td>
> > >                <td width="85" align="left" class="tableheader"><a
> > > href="javascript:sortBy('memBranch')"><u>Branch</u></a></td>
> > >                <td width="85" align="left" class="tableheader"><a
> > > href="javascript:sortBy('prodType')"><u>Product<br>Type</u></a></td>
> > >                <td width="160" align="left" class="tableheader"><a
> > > href="javascript:sortBy('followUpDate')" ><u>Follow Up Date</u></a></
> > > td>
> > >                <td width="100" align="middle" class="tableheader"><font
> > > color="#397EB5">Past Due</font><br><a href="javascript:sortBy
> > > ('pastDueAmt')"><u>Amount</u></a>&nbsp;&nbsp;&nbsp;<a
> > > href="javascript:sortBy('pastDueCnt')"><u>Count</u></a></td>
> > >                <td width="210" align="left" class="tableheader"><a
> > > href="javascript:sortBy('contactStatus')"><u>Status</u></a></td>
> > >        </tr>
> > >        #foreach ($actionList in $actionList)
> > >        <tr>
> > >                <td width="85" align="left">
> > >                        <tableborder = "0" width = "110">
> > >                                <tr>
> > >                                        <td width = "50%" align =
> "left"><a
> > > href='javascript:loadContactInfo($!actionList.cifId, $!
> > > actionList.contactId, $!actionList.csId, "$!
> > > actionList.contactType")'><u>$!actionList.memNo</u></a></td>
> > >                                        <td width = "50%" align =
> "center">#if($!actionList.contactType
> > > == 'IR') -- #else $!actionList.prodSub #end</td>
> > >                                </tr>
> > >                        </table>
> > >                </td>
> > >                <td width="150" align="left">$!actionList.fullName</td>
> > >                <td width="110" align="left">$!actionList.memBranch</td>
> > >                <td width="80" align="left">#if($!actionList.contactType
> == 'IR')
> > > -- #else $!actionList.prodType #end</td>
> > >                <td width="120" align="left">$!actionList.followUpDate</
> > > td>
> > >                <td width="100" align="left">
> > >                        <tableborder = "0" width = "100">
> > >                                <tr>
> > >                                        <td width = "55%" align =
> "right">#if($!actionList.contactType ==
> > > 'IR') -- #else $!actionList.pastDueAmt #end</td>
> > >                                        <td width = "45%" align =
> "center">#if($!actionList.contactType
> > > == 'IR') -- #else $!actionList.pastDueCnt #end</td>
> > >                                </tr>
> > >                        </table>
> > >                </td>
> > >                <td width="110" style="word-wrap: break-word"
> align="left">#if($!
> > > actionList.contactType == 'IR') Impairment -    $!
> > > actionList.contactStatus #else $!contactStates.get("$!
> > > actionList.contactStatus") #end
> > >                </td>
> > >        </tr>
> > >        <tr>
> > >                <td></td>
> > >                <td colspan="5">$!actionList.comments</td>
> > >                <td></td>
> > >        </tr>
> > >        <tr>
> > >                <td colspan="7">&nbsp;<img src="images/t_ct.gif"
> border="0"
> > > height="3" width="760"></td>
> > >        </tr>
> > > #end
> > > </table>
> >
> > > Thanks,
> > > Ramya- Hide quoted text -
> >
> > - Show quoted text -
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to