- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 codeigniter,并且在代码中使用数据表分页进行分页,但搜索框不起作用
查看:
<table id="loc_vh_frt_table" class="table table-bordered table-striped table-sm" >
<thead>
<tr>
<th>SR No</th>
<th>Local Vehicle Freight No</th>
<th>Date</th>
<th> Update/Disable </th>
</tr>
</thead>
</table>
<script>
$(document).ready(function(){
var table = $('#loc_vh_frt_table').DataTable({
"processing": true,
"serverSide": true,
scrollY : "500px",
scrollX : true,
scrollCollapse: true,
"order": [],
"ajax": {
"url": "<?php echo base_url('booking/local_vehicle_freight/CLocalVehicleFreight/getLists/'); ?>",
"type": "POST"
},
"columnDefs": [{
"targets": [0],
"orderable": false
}],
"columnDefs": [ {
"targets": [9],
"data": null,
"defaultContent": "<button class=\"btn btn-success btn1 btn-sm\" >UPDATE</button> <button class=\"btn btn-success btn2 btn-sm\" >DISABLE</button>"
}]
});
$('#loc_vh_frt_table tbody').on( 'click', 'button.btn1', function () {
var data = table.row( $(this).parents('tr') ).data();
$.redirect("<?php echo base_url(); ?>booking/local_vehicle_freight/CLocalVehicleFreight/updateFreightMemo?loc_truck_id="+data[1], "POST");
});
$('#loc_vh_frt_table tbody').on( 'click', 'button.btn2', function () {
var data = table.row( $(this).parents('tr') ).data();
disable_freight(data[1]);
});
});
</script>
Controller :
function getLists(){
$data = $row = array();
$memData = $this->localFreightModel->getRows($_POST);
$i = $_POST['start'];
foreach($memData as $loc_vh){
$i++;
$data[] = array( $i,
$loc_vh->loc_truck_ids,
$loc_vh->local_truck_date,
null);
}
$output = array(
"draw" => $_POST['draw'],
"recordsTotal" => $this->localFreightModel->countAll(),
"recordsFiltered" => $this->localFreightModel->countFiltered($_POST),
"data" => $data,
);
echo json_encode($output);
}
型号:
function __construct() {
$this->table = 'local_truck_freight l';
$this->column_order = array(null, 'l.loc_truck_ids','l.local_truck_date','`bn.branch_name as from_branch`','`bn1.branch_name as to`','`vn.vehicle_no as vehicle`','l.loc_truck_add','loc_truck_remark','l.loc_pay_type');
$this->column_search = array('l.loc_truck_ids','l.local_truck_date','`bn.branch_name as from_branch`','`bn1.branch_name as to`','`vn.vehicle_no as vehicle`','l.loc_truck_add','loc_truck_remark','l.loc_pay_type');
$this->order = array('l.loc_truck_ids' => 'asc');
}
public function getRows($postData){
$this->db->select('l.loc_truck_ids,l.local_truck_date,`bn.branch_name as from_branch`,`bn1.branch_name as to`,`vn.vehicle_no as vehicle`,l.loc_truck_add,loc_truck_remark,l.loc_pay_type');
$this->_get_datatables_query($postData);
if($postData['length'] != -1){
$this->db->limit($postData['length'], $postData['start']);
$this->db->join('vehicle vn', 'l.loc_truck_lorryno=vn.vehicle_id','left');
$this->db->join('branch bn', 'l.local_truck_from=bn.branch_id','left');
$this->db->join('branch bn1','l.loc_truck_to=bn1.branch_id','left');
$this->db->where('l.local_truck_from',$this->session->userdata('user_branch'));
$this->db->where('l.status','active');
}
$query = $this->db->get();
//return $query->result();
return $query->result();
}
public function countAll(){
$this->db->from($this->table);
return $this->db->count_all_results();
}
public function countFiltered($postData){
$this->_get_datatables_query($postData);
$query = $this->db->get();
return $query->num_rows();
}
private function _get_datatables_query($postData){
$this->db->from($this->table);
$i = 0;
foreach($this->column_search as $item){
if($postData['search']['value']){
if($i===0){
$this->db->group_start();
$this->db->like($item, $postData['search']['value']);
}else{
$this->db->or_like($item, $postData['search']['value']);
}
if(count($this->column_search) - 1 == $i){
$this->db->group_end();
}
}
$i++;
}
if(isset($postData['order'])){
$this->db->order_by($this->column_order[$postData['order']['0']['column']], $postData['order']['0']['dir']);
}else if(isset($this->order)){
$order = $this->order;
$this->db->order_by(key($order), $order[key($order)]);
}
}
这段代码的错误是:
Unknown column 'bn.branch_name as from_branch' in 'where clause'
SELECT `l`.`loc_truck_ids`, `l`.`local_truck_date`, `bn`.`branch_name` as `from_branch`, `bn1`.`branch_name` as `to`, `vn`.`vehicle_no` as `vehicle`, `l`.`loc_truck_add`, `loc_truck_remark`, `l`.`loc_pay_type` FROM `local_truck_freight` `l` LEFT JOIN `vehicle` `vn` ON `l`.`loc_truck_lorryno`=`vn`.`vehicle_id` LEFT JOIN `branch` `bn` ON `l`.`local_truck_from`=`bn`.`branch_id` LEFT JOIN `branch` `bn1` ON `l`.`loc_truck_to`=`bn1`.`branch_id` WHERE ( l.loc_truck_ids LIKE '%p%' ESCAPE '!' OR l.local_truck_date LIKE '%p%' ESCAPE '!' OR `bn.branch_name as from_branch` LIKE '%p%' ESCAPE '!' OR `bn1.branch_name as to` LIKE '%p%' ESCAPE '!' OR `vn.vehicle_no as vehicle` LIKE '%p%' ESCAPE '!' OR l.loc_truck_add LIKE '%p%' ESCAPE '!' OR loc_truck_remark LIKE '%p%' ESCAPE '!' OR l.loc_pay_type LIKE '%p%' ESCAPE '!' ) AND `l`.`local_truck_from` = '1' AND `l`.`status` = 'active' ORDER BY `l`.`loc_truck_ids` ASC LIMIT 10
Filename: models/booking/local_vehicle_freight/MLocalVehicleFreight.php
Line Number: 37
在上面的代码中,我上传了我的模型 View 和 Controller 。我无法准确地了解我的代码中错误的地方。它执行获取数据、排序数据和分页,但它在我的搜索框中给出错误。
最佳答案
//js
var dtable = $('#loc_vh_frt_table').DataTable({
processing: true,
serverSide: false,
searching: true,
dom: 'lBfrtip',
lengthMenu: [[5, 10, 25, 50, 100, -1], [5, 10, 25, 50, 100, "All"]],
pageLength: 10,
buttons: [
'csv', 'print'
],
ajax: {
"url": base_url + "/controller_name/datatables",
'method': 'POST',
'data': function (d) {
d._token = $("input[name=_token]").val();
}
}
//controller
function index() {
$data = array();
$data['view'] = 'view_page_name';
$this->load->view('header', $data);
}
function datatables() {
$data = array();
$stock =$this->Stock_model->getRows($this->input->post());
parent::json_output(["draw" => intval($this->input->post('draw')), "recordsTotal" => $stock[1], "recordsFiltered" =>$stock[1], "data" => $stock[0]]);
return;
}
//型号
function getRows($requestArray) {
if (isset($requestArray['keyword']) && $requestArray['keyword'] != '') {
$this->db->where .= " AND (field_name_by_which_you_want_search LIKE '%" . $requestArray['keyword'] . "%')";
$this->db->where .= " AND (field_name_by_which_you_want_search LIKE '%" . $requestArray['keyword'] . "%')";
}
$this->db->where($where);
if ($this->input->post('length') != '-1') {
$this->db->limit($this->input->post('length'), $this->input->post('start'));
}
$this->db->order_by('id','desc');
$query = $result->get('table_name')->result_array();
$count = $result->get('table_name')->num_rows();
return [$query, $count];
}
关于jquery - 数据表分页搜索框不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56863073/
我想为我们的网站创建一个自定义搜索框。让它工作如下: function bookssearch(bs) { window.open('http://webpac.kdu.edu.my/s
我需要向我的搜索系统添加一个弹出窗口事件 - 当客户仅输入 2 个字符时,它应该弹出一个带有警报 e 的小表格。 G。 “搜索时必须输入至少 3 个字符...”并且背景应变灰。 这对我来说可能吗?这是
我的以下功能存在格式问题。正如您将在下面看到的,它大部分都有效,只是搜索框的格式不是我想要的(我想复制 typeahead Twitter Bootstrap 功能): 用户可以在搜索框中输入书名,在
我正在尝试使用 php 和 jquery 实现一个搜索框(搜索结果来自数据库)。我想要做的是,当用户在搜索框中键入内容时,将进行查询以查找包含用户在搜索框中输入的关键字的数据。我遇到的问题是我有这样的
我想知道为什么当我在我的计算机上本地加载 Angular 搜索框时它不起作用。我使用的是相同的代码,当我使用 codepen、plunker 或 jsfiddle 等网站时,它确实有效。它无法正常工作
我想知道如何在鼠标悬停事件上将焦点设置到输入字段。 我想知道当鼠标悬停在输入字段或焦点字段上时如何加载输入字段或焦点字段,以便在光标触摸或鼠标悬停在搜索框的输入字段上时轻松准备打字。 最佳答案 您可以
我有index.jsp,我想搜索视频,但每当我搜索时,它都会给我带来不同的错误,并且我无法获得结果,就像它应该将用户带到搜索文本所在的页面一样。 Search.java import java.io.
所以搜索就像'Ozzie Smith' 第一个表有 (username, fname, lname) = osmith, ozzie, smith 第二张表有 (username, team) = o
有什么方法可以启动/打开带有代码的搜索框,或者只需单击搜索键即可? 最佳答案 SearchManager mgr = ((SearchManager) getSystemService(Context
废话不多说了,直接给大家贴关键代码了,具体代码如下所示: ? 1
我想制作一个具有自动建议并搜索 XML 文件中特定标签的搜索框。我怎样才能实现这一点? 最佳答案 这取决于您所说的 XML 文件的含义。 XML 文件在某些服务器上可用吗? 看看jQuery及其
我用javaee6和jsf2开发了一个小应用程序。我想要一个没有按钮的搜索字段(只需键入并按 Enter 键并给出结果)。我在 bean 中有一个搜索方法: public Book searchByT
首先,这个标题是我能想到的最好的标题。 我编写了一个非常短的小脚本来执行实时搜索。 它的基本原理是: (function ($) { $.fn.SearchThing = function (
我正在用 Java 创建一个简单的桌面应用程序,它显示当前正在运行的服务。我想在顶部添加一个谷歌搜索栏,可以直接在默认浏览器中打开应用中输入的关键字的谷歌搜索结果(网页)。 最佳答案 您应该从输入框中
美好的一天。我正在研究我的搜索框。我如何从多列中进行搜索。除了“id”列之外,我还有名字、姓氏、RFIDnum。我如何将它们添加到我当前的代码中。 这是我的代码: DataView dv = new
在 this site ,右上角的搜索框不起作用。 我尝试向父元素添加 z-index: .col-right-one-thirds { max-width: 22.38033333em;
我想要在 bootstrap 3+ 中带有选择选项和清除按钮的大搜索框。我尝试了下面的代码,但它没有正确对齐。
执行此代码$("input[name=q]").value = "Hello"; 应在 stackoverflow 搜索框中输入“Hello”。然而它仍然是空的。为什么? 最佳答案 因为它应该是: $
我是新手。我尝试制作一个搜索框。当我在 Firefox 上打开它时。对我来说没关系。然后我在 IE、Chrome 和 Safari 中执行此操作。实际上并不酷。有谁知道我的问题,请帮我解决一下? 我想
当用户加载我的页面时,浏览器中第一个激活的元素是我的菜单按钮之一。 我的页面上有一个搜索框(表单域),我希望它成为第一个激活的东西。 我所说的“事件”是指当用户按下选项卡按钮时,它会循环浏览网站上的所
我是一名优秀的程序员,十分优秀!