allready I have tried in this control..in my application
its not working in firefox and other browers...its working only in IE..
And i triend one more control..scs.web.control also..this is aslso not working properlly...
Can u plxz give any suggetion....
at javascript side can we do anything? element.options...like...
this post any is helpfull for me?
//****************strart****************///
http://dotnetslackers.com/Community/forums/populate-asp.net-dropdownlist-using-javascript/t/2404.aspx
var ddlDay = $get('ddlDay');
for(var i = 0; i < 5; i++)
AddToOptionList(ddlDay, i, i);
function ClearOptions(OptionList) {
// Always clear an option list from the last entry to the first
for (x = OptionList.length; x >= 0; x--) {
OptionList[x] = null;
}
}
function AddToOptionList(OptionList, OptionValue, OptionText) {
// Add option to the bottom of the list
OptionList[OptionList.length] = new Option(OptionText, OptionValue);
}
//**********ended*****************//
above link any any helpfull for me ?
at javascript side can we ? to expand the list Items....?
Thanks & Regards
Ramesh