BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
if (args.requestType == "beginedit") { $("#OrderID").attr("disabled", "disabled"); $("#ShipCity").ejDropDownList({ width: '116px', change: "_Change" }).ejDropDownList("setSelectedValue", args.row.children().eq(5).text()); //var gobj = $("#Agacent").ejGrid("instance") //gobj.gridObj.dataSource(data);
$("#Agacent").ejDropDownList({ width: '116px', dataSource: this.model.columns[6].dataSource }).ejDropDownList("setSelectedValue", args.row.children().eq(6).text()); } else $("#ShipCity").ejDropDownList({ width: '116px', change: "_Change" }); } [Server side] [Serializable] public class Bikes { public Bikes() {
} public Bikes(long Bike, string text) { this.value = Bike; this.text = text; } public long value { get; set; } public string text { get; set; } |