바코드 렌더러
Barcode 셀 렌더러를 이용해서 데이터를 표시할 수 있습니다.
현재 “Code128”, “Code39” 심볼 타입의 기본 기능을 지원합니다.
Code128
컬럼에 Code128 Barcode를 적용시킵니다.
1
2
3
4
gridView.setColumnProperty("OrderID2", "renderer", {type:"code128"});
gridView.setColumnProperty("Country2", "renderer", {type:"code128"});
gridView.setColumnProperty("Country2", "styles", {figureBackground: "#ff111111"});
Code39
컬럼에 Code39 Barcode 적용시킵니다.
1
2
gridView.setColumnProperty("CustomerID2", "renderer", {type:"code39"});
gridView.setColumnProperty("CustomerID2", "styles", {figureBackground: "#ff000088"});