Hi,
I've created a WebUserControl (called myWebCombo) in VB.Net with a RadAjaxPanel inside.
I use this function:
function DoSomething(item){
<%= ajComboBox.ClientID %>.AjaxRequest(item.ComboBox.GetValue());
}
I've added 2 of my WebUserControl into an ASP.net page and when I run it...this function is repeated and It doesn't work correctly.
In HTML page this is the result:
[..code..]
function DoSomething(item){
myWebCombo1_ajComboBox.AjaxRequest(item.ComboBox.GetValue());
}
function DoSomething(item){
myWebCombo2_ajComboBox.AjaxRequest(item.ComboBox.GetValue());
}
so when I change in the first (myWebCombo1), fires the second one!!!!
Thanks a lot!!
Davide Martini
I've created a WebUserControl (called myWebCombo) in VB.Net with a RadAjaxPanel inside.
I use this function:
function DoSomething(item){
<%= ajComboBox.ClientID %>.AjaxRequest(item.ComboBox.GetValue());
}
I've added 2 of my WebUserControl into an ASP.net page and when I run it...this function is repeated and It doesn't work correctly.
In HTML page this is the result:
[..code..]
function DoSomething(item){
myWebCombo1_ajComboBox.AjaxRequest(item.ComboBox.GetValue());
}
function DoSomething(item){
myWebCombo2_ajComboBox.AjaxRequest(item.ComboBox.GetValue());
}
so when I change in the first (myWebCombo1), fires the second one!!!!
Thanks a lot!!
Davide Martini