mirror of
				https://git.proxmox.com/git/proxmox-backup
				synced 2025-10-31 19:15:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			280 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			280 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| Ext.define('PrefixField', {
 | |
|     extend: 'Ext.form.field.Text',
 | |
|     alias: 'widget.prefixfield',
 | |
| 
 | |
|     maxLength: 6,
 | |
|     allowBlank: false,
 | |
| 
 | |
|     maskRe: /([A-Za-z]+)$/,
 | |
| 
 | |
|     listeners: {
 | |
| 	change: function(field) {
 | |
| 	    field.setValue(field.getValue().toUpperCase());
 | |
| 	},
 | |
|     },
 | |
| });
 | 
