Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Binding Controls After DataSource Change
Message
From
23/07/2006 22:01:54
Rex Mahel
Realm Software, Llc
Ohio, United States
 
 
To
All
General information
Forum:
ASP.NET
Category:
The Mere Mortals .NET Framework
Title:
Binding Controls After DataSource Change
Miscellaneous
Thread ID:
01139026
Message ID:
01139026
Views:
59
All,

I've told this story before, but here goes. I have a business object that populates a GridView. I subclassed the business object and added a DataRow property that I populate with the selected DataRow from the GridView. I bind the data in the DataRow to mmDropDownList objects. My problem is that when I select a new row, I can't get the new values to populate into the mmDropDowns. I use the following method:
	protected void gdvInstruments_SelectedIndexChanged(object sender, EventArgs e)
	{
		int musicianInstrumentID = (int)this.gdvInstruments.SelectedDataKey.Value;
		this.oMusicianInstrumentXRef.GetMusicianInstrumentFromDataTableByMusicianInstrumentID(musicianInstrumentID);
		this.BindControl(this.ddlInstrument);
		this.BindControl(this.ddlGenre);
		this.BindControl(this.ddlExperience);
	}
What am I doing wrong?

TIA

Rex
Next
Reply
Map
View

Click here to load this message in the networking platform