/**
 * @author hooriza (ajaxUI team)
 */
 
(function(className) {

	SPS[className] = $Class({
		
		_o : null,

		$init : function(sEl) {
			
			var oEl = $(sEl);
			
			var o = this._o = {
				form : SPS.getParentForm(oEl)
			};
			
			SPS.selectbox.touchAll('select_d', oEl);
			
			$Fn(this._bindEvents).owner(this).attach(window, 'load');
			
		},
		
		_bindEvents : function() {

			var o = this._o;
			var self = this;

			SPS.setBeforeSubmit(o.form, '.txtbtn02 a', function() {
				// var sJson = self._fillJsonValue();
				alert(SPS.text('TODO')); // TODO
				return true;
			});
			
		}

	});

})('ct_128_02');
