이번 주부터 장마가 시작된 건지 연일 비가 내리네요. 다들 즐거운 마음으로 공부하3.
태그의 속성 중 OnDrawCell에 함수를 추가하여 만들 수 있구요. 이 기능을 만드는 데 핵심은 %query("ID")를 통해 해당 row의 ID값을 가져올 수 있다는 것입니다.
아래 예제 소스 참고하소서:
<column colName="bbs_subj" header="SUBJECT" id="subjColumn" width="62%" filterType="text" filterOp="[" style="font-size:12px;" OnDrawCell="DrawCell" cellTitle="내용을 보려면 클릭하세요!" title="글제목" />
/// Display Preview contents of the row
Method DrawCell(pTable As %ZEN.Component.tablePane, pName As %String, pSeed As %String) As %Status
{
set PREVIEW=1000 // 미리 보기 글자 수.
#; Draw HTML to render table cell.
&html<
<span title="#(..EscapeHTML(##class(dbo.BoardQnA).%OpenId(%query("ID")).bbsnote.Read(PREVIEW)))#">
#(%query(pName))#
span>
>
Quit $$$OK
}
- 적용 예제 보기: http://www.postrdb.com/FAQ/list2.csp
To Contribute,
- html 태그가 그대로 보이는 데, 시간나면 없애고 텍스트만 보이는 방법을 적용할 것.
|