Posted
on Oct 8, 2007
(permalink)
My Version is the latest Q2 2007 this works for me:
function OnClientSelectedIndexChanged(item)
{
var combo = document.getElementById('<%=dpSecond.ClientID%>' + '_wrapper');
if(item.Value=="Between" || item.Value=="NotBetween")
{
combo.style.display = 'block';
}
else
{
combo.style.display = 'none';
}
}