hi,
In this example https://examples1.ext.net/#/Form/Com...Linked_Combos/

if you go to the source code, we have a fucntion called CitiesRefresh.

That function contains a line of code like below,
foreach (XmlNode cityNode in xmlDoc.SelectNodes(string.Concat("countries/country[@code='", this.Countries.SelectedItem.Value, "']/city")))
{
string id = cityNode.SelectSingleNode("id").InnerText;
string name = cityNode.SelectSingleNode("name").InnerText;


data.Add(new{Id=id, Name = name});
}

Check the blocked line. Thsi line is not getting compiled. Any replacement for this line?
I am using VS 2005 and coolite 7.