JQuery Easyui binding Drop Box control get data from Database MVC controller pass the value past

Source: Internet
Author: User

This is in the OA system, need to use a small function, more general, because I was only contact Easyui soon, I hope the wrong place everyone point out, thank you

Easyui-combobox for Interface

<td><label for= "lab_con_id" > Service contract number:</label></td>
<td><input class= "Easyui-combobox" data-options= "Required:false" name= "lab_con_id" id= "lab_con_id" > </td>

Js

$ (function () {

Go to the background, query out the data, bind the data

Ajaxhelper ('/labcontract/select_conid ', ' GET ', null). Done (the function (DT) {

$ (' #lab_con_id '). Combox ({

DATA:DT;

Valuefield: ' Id ',

TextField: ' con_id '

})

});

})

Controller

Public Jsonresult Select_conid () {

Method of finding

List<contract> conlist=_ilabconttact. Getcontractid () as list<contract>;

Assigning values to the model pass to the interface

List<contractviewmodel> vm=new list<contractviewmodel> ();

Conlist. ForEach (item=>{

List<contractviewmodel> vmodel=new list<contractviewmodel> ();

Vmodel. Id=item. Id;

Vmodel. Con_id=item. con_id;

Vm. ADD (Vmodel);

})

Return Json{vm,jsonrequestbehavior.allowget}

}

JQuery Easyui binding Drop Box control get data from Database MVC controller pass the value past

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.