Extjs NumberField 뒤에 단 위 를 추가 하여 사고 방향 을 실현 합 니 다.

UnitText.js========================
 
// textfield unitText :
Ext.override(Ext.form.TextField, {
unitText : '',
onRender : function(ct, position) {
Ext.form.TextField.superclass.onRender.call(this,ct, position);

if (this.unitText != ''){
this.unitEl =ct.createChild({
tag: 'div',
html: this.unitText this.unitEl.addClass('x-form-unit'); this.width =this.width
-(this.unitText.replace(/[^\x00-\xff]/g, "xx").length * 6 +2); this.alignErrorIcon= function() {
this.errorIcon.alignTo(this.unitEl,'tl-tr', [2, 0]); }});
UnitText.js 를 jsp 파일 에 넣 고 css 스타일 을 더 하면 다음 과 같다.
 
<style>
.x-form-unit{
height:22px;
line-height:22px;
padding-left:2px;
display:inline-block;
display:inline; </style>
<script type="text/javascript"src="UnitText.js"></script>
이렇게 하면 사용 할 수 있다.사용 방법 은 다음 과 같다.
 
var jine = new Ext.form.NumberField({
id: 'je',
fieldLabel: ' ',
allowDecimals: true, // ?
allowNegative: false, // ?
width: 100,
style: 'text-align:right',
unitText: ' '
});

좋은 웹페이지 즐겨찾기