Her is my code
foreach (var comboBox in this.m_storage.ColumnComboList)
{
comboBox.OnClientSelectedIndexChanged = string.Format(
"function(sender, args){{ComboColList(sender, args, '{0}', '{1}', '{2}');}}",
comboBox.ID,
comboBox.ClientID,
list???);
}
The list??? is the third parameter and is a list of strings. When I check the parameter in debug mode I can only see string methods. There must be a way for where I can send a list of strings to the client side and access the values.