(10) ExtJS의 Ext.form.filed.TextArea 텍스트 영역

2366 단어
JS 파일:
Ext.onReady(function(){

		Ext.QuickTips.init();
		var testForm=new Ext.form.Panel({
				title:'Ext.form.field.TextArea ',
				bodyStyle:'padding:5',// 
				frame:true,
				height:150,
				width:250,
				renderTo:'form',
				items:[{
					xtype:'textarea',
					fieldLabel:' ',
					id:'memo',// id
					labelSeparator:':',// 
					labelWidth:60,// 
					width:200
				}],
				buttons:[{text:' ',handler:showValue}]
		});
		function showValue(){
			var memo=testForm.getForm().findField('memo');// 
			alert(memo.getValue());// 
		}
	
});

jsp 파일:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'JS1.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!-- extjs  -->
	<link rel="stylesheet" type="text/css" href="js/extjs/resources/css/ext-all.css">
	<!-- extjs  -->
	<script type="text/javascript" charset="utf-8" src="js/extjs/ext-all-debug.js"></script>
	<!--   -->
	<script type="text/javascript" charset="utf-8" src="js/extjs/ext-lang-zh_CN.js"></script>
	
	<script type="text/javascript" charset="utf-8" src="base/009_text.js"></script>


  </head>
  
  
  <body style="margin:10px">
  	<div id="form"></div> 
  	<!--   -->
  	<div id="errorMsg"></div>
  </body>
</html>

좋은 웹페이지 즐겨찾기