Setup the storing of the address for the new attendee.
// used to setup initial class
initialize: function(){
- // this.listenTo( this.model, 'change', this.render );
+ this.listenTo( this.model, 'change', this.render );
this.listenTo( this.model, 'change:customFields', this.resetCustomFields );
return this;
// console.log( this.model.validationError );
}
- // this.$('.reg-edit-form').hide();
+ this.$('.reg-edit-form').hide();
app.regEventLock = false;
},
// used to setup initial class
initialize: function(){
- // this.listenTo( this.model, 'change', this.render );
+ this.listenTo( this.model, 'change', this.render );
this.listenTo( this.model, 'change:customFields', this.resetCustomFields );
return this;
// console.log( this.model.validationError );
}
- // this.$('.reg-edit-form').hide();
+ this.$('.reg-edit-form').hide();
app.regEventLock = false;
},
'fname' => $modelData['fname'],
'lname' => $modelData['lname'],
'email' => $modelData['email'],
+ 'addr1' => $modelData['addr1'],
+ 'addr2' => $modelData['addr2'],
+ 'city' => $modelData['city'],
+ 'state' => $modelData['state'],
+ 'zip' => $modelData['zip'],
+ 'country' => $modelData['country'],
'date_created' => date('Y-m-d'),
),
'%s'
$prevStart = false;
$nextStart = false;
$start = 1;
- $limit = 5; // Set to the number of listings per page
+ $limit = 20; // Set to the number of listings per page
$registrantCount = 0;
$textSearch = false;
$where = ' TRUE ';