BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
[Incorrect snippet] function complete(args) { if (args.requestType == "beginedit") { $("#ShipCountry").ejDropDownList("setSelectedValue", args.row.children().eq(4).text()); $("#ManufacturerCountry").ejDropDownList("setSelectedValue", args.row.children().eq(4).text());//have set the same value for both the dropdownlist } } [Correct snippet] function complete(args) { if (args.requestType == "beginedit") { $("#ShipCountry").ejDropDownList("setSelectedValue", args.row.children().eq(4).text()); $("#ManufacturerCountry").ejDropDownList("setSelectedValue", args.row.children().eq(5).text());//the index specified with eq indicates the index of the corresponding column in the grid } } |