mirror of
				https://git.proxmox.com/git/proxmox-backup
				synced 2025-11-02 15:18:42 +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());
 | 
						|
	},
 | 
						|
    },
 | 
						|
});
 |