前台
<link rel="stylesheet" type="text/css" href="../css/easyui.css"/>
<script type="text/JavaScript" src="../js/jQuery-1.7.1.min.js"></script>
<script type="text/javascript" src="../js/jquery.easyui.min.js"></script>
<script type="text/javascript">
var vID = "DDLCC";
$(function () {
$('#' + vID).combobox({
valueField: 'TPrice', //TPrice
textField: 'typeName',
//注册事件
onChange: function (newValue, oldValue) {
if (newValue != null) {
var thisKey = encodeURIComponent($('#' + vID).combobox('getValue')); //搜索词
var thisType = ""; //车辆类型
var urlStr = "AutoComplete.ashx?objType=" + thisType + "&objStr=" + thisKey;
$("#" + vID).combobox("reload", urlStr);
}
},
onSelect: function (record) {
setValue(record.typeName);
//document.getElementById("TextBox4").value = record.TPrice;
$("#TextBox4").val(record.TPrice);
}
});
});
function setValue(vTxt) {
$('#' + vID).combobox('setValue', vTxt);
}
</script>
<style type="text/css">
.combo
{
height:15px;
border:1px solid #CECCCD;
overflow :hidden ;
}
.combo .combo-text{
height:15px;
font-size:12px;
line-height:15px;
color :#000000;
}
.combo .combo-arrow{
background:#E0ECF9 url('../css/images/combo_arrow.gif') no-repeat 0px 0px;
width:14px;
height:15px;
overflow:hidden;
vertical-align:middle;
cursor:pointer;
opacity:0.6;
filter:alpha(opacity=60);
}
</style>
<select id="DDLCC" class="easyui-combobox" name="DDLCC" style="width:84px;" data-options="required:true" title="键入搜索查询" >
</select>
后台
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using Newtonsoft.Json;
using System.Text;
namespace used_car.web
{
/// <summary>
/// AutoComplete 的摘要说明
/// </summary>
public class AutoComplete : IHttpHandler
{
protected DataTable dt = null;
public void ProcessRequest(HttpContext context)
{
context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
ClearClientPageCache();
context.Response.ContentType = "text/plain";
string strObjTypee = "", strObjStr = "";
if (context.Request.QueryString["objType"] != null && context.Request.QueryString["objStr"]!=null)
{
strObjTypee = context.Server.UrlDecode(context.Request.QueryString["objType"].ToString());
strObjStr = context.Server.UrlDecode(context.Request.QueryString["objStr"].ToString());
dt = linkeMaterials(strObjTypee, strObjStr);
if (dt != null)
{
string data2 = JsonConvert.SerializeObject(dt);
context.Response.Write(data2);
context.Response.Flush();
context.Response.End();
}
}
}
public DataTable linkeMaterials(object objType, object objStr)
{
DataTable dt = new DataTable();
if (objStr != null)
{
if (!string.IsNullOrWhiteSpace(objStr.ToString()))
{
//left(T11,2)='" + objType + "' or
string strSql = "select top 15 C.T46 as typeName, C.T45 as ID,C.T47 as TPrice from [dbo].[JC79] as C where T46 like'%" + objStr + "%'";
DataSet dsJC97 = Maticsoft.DBUtility.DbHelperSQL.Query(strSql);
dt = dsJC97.Tables[0];
}
}
return dt;
}
StringBuilder sbJC97 = new StringBuilder("");
public string linkeMaterials2(object objType, object objStr)
{
if (objStr != null)
{
if (!string.IsNullOrWhiteSpace(objStr.ToString()))
{
//left(T11,2)='" + objType + "' or
string strSql = "select top 15 C.T46 as 型号名称, C.T47 as 现行价格, C.T45 as ID,C.T11 as 种类编号 from [dbo].[JC79] as C where T46 like'%" + objStr + "%'";
DataSet dsJC97 = Maticsoft.DBUtility.DbHelperSQL.Query(strSql);
if (dsJC97 != null)
{
DataTable dtJC97 = dsJC97.Tables[0];
int dtCount = dtJC97.Rows.Count;
if (dtCount > 0)
{
for (int i = 0; i < dtCount; i++)
{
sbJC97.Append("{ typeName: \"" + dtJC97.Rows[i]["型号名称"] + "\",ID: \"" + dtJC97.Rows[i]["ID"] + "\",Price: \"" + dtJC97.Rows[i]["现行价格"] + "\",ZL: \"" + dtJC97.Rows[i]["种类编号"] + "\"}");
if (i != (dtCount - 1))//如果不是最后一个
{
sbJC97.Append(",");
}
}
}
}
}
}
return sbJC97.ToString();
}
public bool IsReusable
{
get
{
return false;
}
}
public static void ClearClientPageCache()
{
HttpContext.Current.Response.Buffer = true;
HttpContext.Current.Response.Expires = 0;
HttpContext.Current.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1);
HttpContext.Current.Response.AddHeader("pragma", "no-cache"); HttpContext.Current.Response.AddHeader("cache-control", "private"); HttpContext.Current.Response.CacheControl = "no-cache";
}
}
}
easyUI-combobox 动态绑定数据源的更多相关文章
-
easyui combobox点击输入框弹出下拉框
由于easyui combobox需要点击下拉箭头才能下拉,不能像select标签那样点击输入框就下拉,所以觉得不太方便,查看了一下,combobox弹出框是一个div,原本想在他的输入框的点击事件中 ...
-
jQuery easyui combobox获取值|easyui-combobox获取多个值
Query easyui combobox事例: name="language" data-options=" ...
-
easyui combobox onSelect事件
easyui combobox 没有onchange事件,只有onSelect事件 1 $(function () { $('#Select6').combobox({ onSelect: funct ...
-
jquery easyui combobox 级联及触发事件,combobox级联
jquery easyui combobox 级联及触发事件,combobox级联 >>>>>>>>>>>>>>&g ...
-
Easyui combobox onChange事件
Easyui combobox onChange事件: 注册事件: $(function () { $('#cc_id').combobox({ onChange: function (newValu ...
-
JQuery EasyUI Combobox的onChange事件
html中的select 的change事件 <select id="consult_province" name="consult_province" ...
-
关于easyui combobox下拉框实现多选框的实现
好长时间没有更博了,一是因为最近真的比较忙,二是因为自己是真的偷懒了,哈哈 好啦,这篇博客主要是总结一些关于easyui combobox下拉框实现多选框的实现,包括前台界面的展示,和后台对数据的获取 ...
-
easyui combobox下拉框复制后再禁用,点击不会出现下拉框
easyui combobox下拉框禁用,点击不会出现下拉框 需要做到,在给easyui combobox赋值后,再禁用easyui combobox 解决办法: $("#time-sele ...
-
easyui combobox开启搜索自动完成功能
combo.json [{ "id":-1, "text":" ", "spell":"" },{ ...
-
表单(上)EasyUI Form 表单、EasyUI Validatebox 验证框、EasyUI Combobox 组合框、EasyUI Combo 组合、EasyUI Combotree 组合树
EasyUI Form 表单 通过 $.fn.form.defaults 重写默认的 defaults. 表单(form)提供多种方法来执行带有表单字段的动作,比如 ajax 提交.加载.清除,等等. ...
随机推荐
-
LaTex学习笔记(一):review
1.百分号 \% 2.下标 b_{ij} 3.表格(excel2latex) 符号说明 \begin{table}[H] \centering \begin{tabular}{m{100pt}< ...
-
JQZoom 图片放大插件的使用
QZoom是一个基于最流行的jQuery的图片放大器插件.它功能强大,使用简便.支持标准模式.反转模式.无镜头.无标题的放大,并可以自定义jQZoom的窗口位置和渐隐效果,修正IE6的select b ...
-
hibernate反向工程 (eclipse和myeclipse)(转)
hibernate反向工程 (eclipse和myeclipse) 如何提取数据库的模式信息,想通过hibernate的反向工具尝试下. 一.myeclipse下hibernate反向工程: 1.选择 ...
-
[Hive - LanguageManual] Import/Export
LanguageManual ImportExport Skip to end of metadata Added by Carl Steinbach, last edited by Le ...
-
HDU 1045(Fire Net)题解
以防万一,题目原文和链接均附在文末.那么先是题目分析: [一句话题意] 给定大小的棋盘中部分格子存在可以阻止互相攻击的墙,问棋盘中可以放置最多多少个可以横纵攻击炮塔. [题目分析] 这题本来在搜索专题 ...
-
Android初级教程:Android中解析方式之pull解析
在安卓中有很多种解析方式.按照大方向有xml解析和json解析.而,细致的分,xml和json解析各有自己的很多解析方式.今天这一篇主要介绍xml解析中的pull解析.对于xml的解析方式,我之前在j ...
-
python中和生成器协程相关yield from之最详最强解释,一看就懂(二)
一. 从列表中yield 语法形式:yield from <可迭代的对象实例> python中的列表是可迭代的, 如果想构造一个生成器逐一产生list中元素,按之前的yield语法,是在 ...
-
windows部分常用命令
dir 查看内容 md 新建目录 copy 复制 del 删文件 cls 清屏 tasklist 查看运行进程 taskkill /pid xxx 杀死进程xxx taskmgr 打开任务管理器 ms ...
-
[转]xargs详解
为什么要用xargs,问题的来源 在工作中经常会接触到xargs命令,特别是在别人写的脚本里面也经常会遇到,但是却很容易与管道搞混淆,本篇会详细讲解到底什么是xargs命令,为什么要用xargs命令以 ...
-
WIN10 网速问题,边下载 边逛论坛 电脑 有点卡
引用:https://www.chiphell.com/forum.php?mod=viewthread&tid=1961836&extra=page%3D1&mobile=2 ...