I have a WebDataGrid with 3 dropdown edit providers, which need to cascade off the value of the first one (the value, not the text). All three are databound to seperate SQL sources. I've had a good look around the forums and found nothing useful, has anyone got this working?
thanks,
James
Hello James, I have attached a sample demonstrating this. Please let me know if you have any questions.
Thanks SGowdra,
Item doesn't seem to be defined anywhere (for each Item item in data), I'm no C programmer but I can't see anything obvious im missing.
Hello James, Were you able to get this working? Did you have any further questions regarding this?
Hello James, You just need to create a class file Item.cs and set getter and setter for the variables as given below.
public class Item{ public Item() { }
public int ID { get; set; } public string Fname { get; set; } public string Sname { get; set; }}