Posted 27 Jul 2010 Link to this post
<
telerik:RadScriptBlock
ID
=
"scbScripts"
runat
"server"
>
script
type
"text/javascript"
function populateSelectedOwners(sender, args) {
var textBox;
textBox = $find("<%= tbOwners.ClientID %>");
textBox.set_value(args.get_argument());
return false;
}
function populateSelectedInvestors(sender, args) {
textBox = $find("<%= tbInvestors.ClientID %>");
function populateSelectedPartners(sender, args) {
textBox = $find("<%= tbPartners.ClientID %>");
</