일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- PLSQL
- dock
- swingx
- node.js
- JSON
- Google Map
- GPS
- 전자정부프레임워크
- iBATIS
- 선택적조인
- Struts
- jsr 296
- Ajax
- appspresso
- MFC
- Spring
- sencha touch
- WebLogic
- Eclipse
- oracle
- tomcat
- jQuery
- MySQL
- rowspan
- phonegap
- 가우스
- ibsheet
- JDOM
- PHP
- Android
- Today
- Total
목록Developement/RIA (19)
Where The Streets Have No Name
/*--------------------------------------------------------------------------------------------- IBSheet 를 통해 받아온 xml 스트링에서 데이터를 리턴 parameter 1 : IBSheet를 통해 받아온 xml string return : array ex) return 이용 for(i=0;i
출처 : http://blog.naver.com/pkoksh/150020605179 function LoofSample{ var msheet = document.frm1.mySheet; //마지막 행의 인덱스 var lrow = msheet.LastRow; //헤더행 갯수 var hrow = msheet.HeaderRows; for(i=hrow;i
출처 : http://blog.naver.com/pkoksh/150020605065 //********************************************************************************************** // 공통 Javascript 소스 //********************************************************************************************** //--------------------------------------------------------------------------------------------- // combodata로 select box 에 append 시킨다. //..
sumtext={sum(bungiScore1)/sum(decode(bungiScore1,0,0,1))}
바인딩 컴포넌트의 param 에는 value 가 아닌 checked 가 들어가야 합니다. 데이타셋의 해당 체크박스의 칼럼값에는 1(checked) or 0(not) 이 들어가면 됩니다
컬럼 데이터 타입이 integer일때 Number()함수를 사용해서 변환후 계산해야함 Value={Number(s1)+Number(s2)+Number(s3)+Number(s4)+Number(s5)+Number(s6)+Number(s7)+Number(s8)+Number(s9)+Number(s10)+Number(s11)+Number(s12)}
For i = 0 To TChart1.Series(0).asBubble.RadiusValues.Count - 1 TChart1.Series(0).asBubble.RadiusValues.Value(i) = 50 Next i
3:col02,2:col03,1:col04 과 같이 level순서대로 나열해야 정확한 결과가 출력됨
col01:STRING(16),col02:DECIMAL(10.1),col03:DECIMAL(10.1),col04:DECIMAL(10.1),col05:DECIMAL(10.1),col06:DECIMAL(10.1),col07:DECIMAL(10.1),col08:DECIMAL(10.1),col09:DECIMAL(10.1),col10:DECIMAL(10.1),col11:DECIMAL(10.1),col12:DECIMAL(10.1),col13:DECIMAL(10.1) A15.5,15,14.5,14,13.5,13,12.5,12,11.5,11,10.5,10 B,15.5,15.3,15.1,14.9,14.7,14.5,14.3,14.1,13.9,13.7,13.5,13.3 C,15.5,14.7,13.9,13.1,12.3,11...
ID, Name(=Title), Width(=Size) Grid ( Format, ColumnProp ) Change Column ID
var div = document.createElement('DIV'); div.innerHTML = 가져온responseText; div.getElementsByTagName
http://www-128.ibm.com/developerworks/kr/library/j-ajax1/ ttp://www-128.ibm.com/developerworks/kr/library/j-ajax2/
Example 1 public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { … response.sendError(response.SC_MOVED_PERMANENTLY, "/newUserLogin.do"); } Example 2 In Active Server Page (ASP) with VBScript, developers can use Response.Redirect. Response.Redirect "newUserLogin.asp" or Response.Redirect("newUserLogin.asp") The code below is a more comp..
req.setCharacterEncoding("utf-8"); LBox reqBox = LCollectionUtility.getBox(req); GetEmpListTask task = new GetEmpListTask(reqBox.get("user_name")); //xmlhttp로 받을시 utf-8지정해야 한글이 안깨짐 res.setContentType("text/html;charset=UTF-8"); try{ task.perform(); List empList = task.getList(); PrintWriter out = res.getWriter(); JSONArray jsonArray = JSONArray.fromArray( empList.toArray() ); out.println(jsonArr..
1) AJAX를 통해서 서버에 데이타를 보내는 경우function getXmlHttpRequest() { if(window.XMLHttpRequest) return new XMLHttpRequest(); else return new ActiveXObject("Microsoft.XMLHTTP"); }function reqData() { var info = {}; info['name'] = 'fantazic'; info['url'] = 'http://fantazic.com'; var encoded; try { encoded = JSON.stringify(info); //객체를 저장하는 경우 //{"name":"fantazic","url":"http://fantazic.com"} } catch(e) { ale..
excel import__ShowEmbedObject(__NOSCRIPT_ID__);
parent 창과 child창의 DataSet 들의 상속방법은 다음과 같이 세가지 방식일 경우 최적화된 방법을 이용할 수 있다. 첫번째는 parent 에서 child 창 의 DataSet Component를 처리하는 방식이다. * parent 에서 child(PopUp 창) 의 객체 호출 - PdataSet(parent DataSet), CdataSet(Child DataSet) 일 경우, - parent 창에서 설정 : - window.parent.oWin1.CdataSetID.SetDataHeader(“생성된 헤더정보”); - window.parent.oWin1.CdataSetID.ImportData( PdataSetID.ExportData(1, CountRow, false)); 두번째, FrameS..