mirror of
				https://github.com/fspc/BikeShed-1.git
				synced 2025-10-31 00:45:35 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| {
 | |
|   initComponent: function(){
 | |
|     // calling superclass's initComponent
 | |
|     this.callParent();
 | |
| 
 | |
|     //due to Netzke bug, :min_chars attribute doesn't work
 | |
|     var min_char_columns = [
 | |
|       "user_action__purpose"]
 | |
|     Ext.each(min_char_columns, function(column, index) {
 | |
|       Ext.ComponentManager.get(column).editor.minChars = 1;
 | |
|     });
 | |
| 
 | |
| 
 | |
|   }
 | |
| }
 |