@Description: Fires right before saving, if your explicitly return false it cancels
@File: events/formListener.js
@Param: e The event that triggered the save with an additional sb.ajax property
attached that represents the ajax object that will fetch
@Description: used to create a new form listener that saves data back to a set url
@File: events/formListener.js
@Param: object params Used to preseed the listener with class listeners
@Return: type desc
@Example:<input name="fname" sb:set_url="/admin/set_value" value="joe" />
var myListener = new sb.events.formListener({
onBeforeSave : function(e){
}
});
//when you hit enter it would pass the data back to the url given