var LSselect = new Class({
    initialize: function(){
      this.main_page = $('LSobject-select-main-div').getParent();
      this.content = $('content');
      
      this.multiple = LSselect_multiple;
      
      this.LSselect_search_form = $('LSselect_search_form');
      var input = new Element('input');
      input.setProperty('name','ajax');
      input.setProperty('type','hidden');
      input.injectInside(this.LSselect_search_form);
      
      this.tempInput = [];
      
      this.LSselect_search_form.addEvent('submit',this.onSubmitSearchForm.bindWithEvent(this));
      
      this.LSselect_topDn = $('LSselect_topDn');
      if (this.LSselect_topDn) {
        this.LSselect_topDn.addEvent('change',this.onChangeLSselect_topDn.bind(this));
      }
      this.LSselect_refresh_btn = $('LSselect_refresh_btn');
      this.LSselect_refresh_btn.addEvent('click',this.onClickLSselect_refresh_btn.bind(this));
      
      this.initializeContent();
      varLSdefault.ajaxDisplayDebugAndError();
    },
    
    initializeContent: function() {
      $$('input.LSobject-select').each(function(el) {
        el.addEvent('click',this.oncheckboxChange.bind(this,el));
      }, this);
      
      $$('a.LSobject-list-page').each(function(el) {
        el.addEvent('click',this.onChangePageClick.bindWithEvent(this,el));
      }, this);
      
      $$('.sortBy_displayValue').each(function(el) {
        el.addEvent('click',this.sortBy.bind(this,'displayValue'));
      }, this);
      
      $$('.sortBy_subDn').each(function(el) {
        el.addEvent('click',this.sortBy.bind(this,'subDn'));
      }, this);
      
      $$('td.LSobject-select-names').each(function(el) {
        el.addEvent('click',this.onNameClick.bind(this,el));
      }, this);
    },

    oncheckboxChange: function(checkbox){
      if (checkbox.checked) {
        var data = {
          template:   'LSselect',
          action:     'addLSselectobject-item',
          objectdn:   checkbox.value,
          objecttype: $('LSselect-object').getProperties('caption').caption,
          multiple:   this.multiple
        };
      }
      else {
        var data = {
          template:   'LSselect',
          action:     'dropLSselectobject-item',
          objectdn:   checkbox.value,
          objecttype: $('LSselect-object').getProperties('caption').caption,
          multiple:   this.multiple
        };
      }
      data.imgload=varLSdefault.loadingImgDisplay(checkbox.getParent().getNext(),'inside');
      new Request({url: 'index_ajax.php', data: data, onSuccess: this.oncheckboxChangeComplete.bind(this)}).send();
    },

    oncheckboxChangeComplete: function(responseText, responseXML) {
      var data = JSON.decode(responseText);
      varLSdefault.loadingImgHide(data.imgload);
    },
    
    onChangePageClick: function(event, a) {
      new Event(event).stop();
      var data = {
        ajax:         true
      };
      this.searchImgload = varLSdefault.loadingImgDisplay($('LSselect_title'),'inside');
      new Request({url: a.href, data: data, onSuccess: this.onChangePageClickComplete.bind(this)}).send();
    },
    
    onChangePageClickComplete: function(responseText, responseXML) {
      varLSdefault.loadingImgHide(this.searchImgload);
      this.content.set('html',responseText);
      this.initializeContent();
    },
    
    onChangeLSselect_topDn: function() {
      this.submitSearchForm();
    },
    
    onSubmitSearchForm: function(event) {
      new Event(event).stop();
      this.submitSearchForm();
    },
    
    submitSearchForm: function() {
      this.searchImgload = varLSdefault.loadingImgDisplay($('LSselect_title'),'inside');
      this.LSselect_search_form.set('send',{
        data:         this.LSselect_search_form,
        evalScripts:  true,
        onSuccess:    this.onSubmitSearchFormComplete.bind(this),
        url:          this.LSselect_search_form.get('action'),
        multiple:     this.multiple
      });
      this.LSselect_search_form.send();
    },
    
    onSubmitSearchFormComplete: function(responseText, responseXML) {
      varLSdefault.loadingImgHide(this.searchImgload);
      
      this.content.set('html',responseText);
      
      varLSdefault.ajaxDisplayDebugAndError();
      
      this.tempInput.each(function(el) {
        el.destroy();
      },this);
      
      this.initializeContent();
    },

    onClickLSselect_refresh_btn: function() {
      this.tempInput['refresh'] = new Element('input');
      this.tempInput['refresh'].setProperty('name','refresh');
      this.tempInput['refresh'].setProperty('type','hidden');
      this.tempInput['refresh'].setProperty('value',1);
      this.tempInput['refresh'].injectInside(this.LSselect_search_form);
      this.submitSearchForm();
    },
    
    sortBy: function(value) {
      this.tempInput['sortBy'] = new Element('input');
      this.tempInput['sortBy'].setProperty('name','orderby');
      this.tempInput['sortBy'].setProperty('type','hidden');
      this.tempInput['sortBy'].setProperty('value',value);
      this.tempInput['sortBy'].injectInside(this.LSselect_search_form);
      this.submitSearchForm();
    },
    
    onNameClick: function(td) {
      var input = td.getParent().getFirst().getFirst();
      input.checked = (!input.checked);
      input.fireEvent('click');
    }
});