0

私はhttp://www.kryogenix.org/code/browser/sorttable/sorttablejavascriptcodeの大ファンです。それは非常に多くのレベルで機能します。

そうは言っても、私は最近、ajax経由で呼び出されたときにソートを機能させようとする問題に直面しました。私が持っているのはメインページのdivレイヤーで、ajaxを使用して動的クエリを呼び出してページに動的にデータを入力しています。これらの結果は、上記のjavascriptファイルを使用して並べ替えることができると考えていました。しかし、そうではなく、なぜそれが機能しないのか理解するのをやめません。

同じクエリをページに配置し、ページが正常に読み込まれ、sorttable.jsがチャームのように機能するときにコードを入力することで、コードがページで機能することを確認しました。

javascriptのようなクライアントサイド言語がajax経由で呼び出されたときに機能しない理由を誰かに教えてもらえれば幸いです。私はそれが想定されていると確信していますが、私はおそらく何かを間違えました。

参考までに、これは私のjquery/ajaxです

        <script type="text/javascript">
                $(document).ready(function(){
                $(".small_radio").click(function() {

                //check radio buildings for selected value
                var radBuild = $('input:radio[name=buildings]:checked').val();

                //check radio daterange for selected value
                var radDate = $('input:radio[name=daterange]:checked').val();

                //create array for multiple possibilites from checkbox users
                var chkUsers = [];
                //loop through checkboxes appending values to array
                $('#checkall :checked').each(function() {
                   chkUsers.push($(this).val());
                 });

                 //send the request
                $.ajax({
                    url: "/inventory/pick-print-results.php",
                    type: "post",
                    data: "buildings=" + radBuild + "&daterange=" + radDate + "&users[]=" + chkUsers,
                    // callback for success
                     success: function(data, textStatus) {
                         $(".loadonly").hide();
                         $(".ajax_stuff").html(data);  //no data here
                          //alert(data); //Data here
                      }, //end success else...
                      //if failsauce throw error
                      error: function() {
                          alert('Not OKay');
                         } //end error failsauce
                      }); //ends .ajax function
                   }); //end #checkall. click function
                }); // ends ready function
            </script>

これは、ajaxを介して呼び出される私のphpクエリデータです。

<?php $message.='
            <input type="hidden" value="'.$big_chunk_sql.'" id="displayed_sql" name="displayed_sql">
            <input type="hidden" value="'.$row_count.'" id="amount" name="amount">
             <input type="hidden" value="print" id="print" name="print">
            <table border="0" width="100%" class="sortable">
            <th class="admin">Location</th>
            <th class="admin">Pick For</th>
            <th class="admin">Requested Date</th>
            <th class="admin">Part Number</th>
            <th class="admin">Quantity</th>
            <th class="admin">Received Date</th>
            <th class="admin">Action</th>';
            while($data=mysql_fetch_array($big_chunk_query)) {

                //Deal with operator Name Don Ford = D Ford
                list($user_first,$user_last)=explode(' ',$data['description']);
                $user_first=strtoupper(substr($user_first,0,1));
                $user_last=ucfirst($user_last);
                $operator_name=$user_first.' ' . $user_last;

               if ($i%2 !=0)
                 $rowColor = 'tr2center';
                  else
                 $rowColor = 'tr1center';
                    $pendingdate= trim($data['received_date']);
                    $newpendingdate = date('m-d-Y',strtotime($pendingdate));
                    $message.= '<tr class="'.$rowColor.'">
                    <td>'. $data['location'].'</td>
                    <td>'.$operator_name.'</td>
                    <td>'.date("m-j-y, g:i a", strtotime($data['date_requested'])) .'</td>
                    <td>'.$data['part_number'] . '</td>
                    <td>'. $data['qty_requested'] . '</td>
                    <td>'. $newpendingdate . '</td><td> 
                    <a href="picking.php?radiopart='.urlencode($data['org_transaction_id']) .'">Mark Picked</a></td></tr>';
                    if($data['notes_to_picker']!='') { 
                    $message.= '<tr class="'.$rowColor.'" align="center"><td colspan="2">&nbsp;</td><td align="right"><b>notes:</b></td><td colspan="4">' . $data['notes_to_picker'].'</td></tr>';
                    }
                    $i++;
                }
                $message.= '</table>';
                echo $message;
    ?>
4

2 に答える 2

1

データを誤って渡していますこれを使用してください

data: {"buildings":radBuild,"daterange":radDate,"users":JSON.stringify(chkUsers)}
于 2012-10-18T17:48:13.150 に答える
1

あなたのケースは、あなたが提供したリンクのドキュメントを読んだ場合、プラグインの作者が「高度な」と見なすものです。http://www.kryogenix.org/code/browser/sorttable/#ajaxtables

成功のコールバックでは、sorttable.makeSortable($("#tableid")[0]);

于 2012-10-18T18:05:28.687 に答える