Terry B
unread,Mar 24, 2008, 3:04:49 PM3/24/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mxAjax
In mxSelect.cfm
change from
setListeners: function() {
Event.observe($(this.options.source),
this.options.eventType,
this.execute.bindAsEventListener(this),
false);
eval("$(this.options.source).on"+this.options.eventType+" =
function(){return false;};");
},
to
setListeners: function() {
if($(this.options.source))
{
Event.observe($(this.options.source),
this.options.eventType,
this.execute.bindAsEventListener(this),
false);
eval("$(this.options.source).on"+this.options.eventType+" =
function(){return false;};");
}
},
I can now not have a source and just populate a select box without
having to worry about another field at all.