//
// Created by KSI ( www.ksimedia.pl )
//

function classCalendarDatePicker() {
  
  this.updateValue = function ( name ) 
  {
    if ( ExtComponents.getValue( name ) == '' )
    {
      document.getElementById( 'vis_'+name ).value = ' - dowolny - ' ;
    }
    else
    {
      document.getElementById( 'vis_'+name ).value = StringUtils.dateFormat ( ExtComponents.getValue( name ) ) ;
    }
    return true ;
  }
  
  this.updateItemsValues = function ( name )
  {
    return true ;
  }
  
}

CalendarDatePicker = new classCalendarDatePicker() ;

