분류 전체보기
-
kendo columns 코드 안에서 적용하고 싶은 컬럼 코드 안에서 ,attributes : { style : "text-align : right; font-weight : bold" } 코드 추가
[kendo ui] columns 텍스트 오른쪽 정렬 및 굵기 bold 처리kendo columns 코드 안에서 적용하고 싶은 컬럼 코드 안에서 ,attributes : { style : "text-align : right; font-weight : bold" } 코드 추가
2022.01.26 -
kendo columns 코드 안에서 적용하고 싶은 컬럼 코드 안에서 ,attributes : { style : "text-align : right; font-weight : bold" } 코드 추가
[kendo ui] columns 텍스트 오른쪽 정렬 및 굵기 bold 처리kendo columns 코드 안에서 적용하고 싶은 컬럼 코드 안에서 ,attributes : { style : "text-align : right; font-weight : bold" } 코드 추가
2022.01.26 -
1. 자바스크립트 변수에 img태그 넣어주고 2. 캔도 그리드에서 Columns의 title에 변수 넣어주기 var red = "" { field: "", title: red,
[kendo ui] 그리드 컬럼명을 이미지로 표현하는 방법1. 자바스크립트 변수에 img태그 넣어주고 2. 캔도 그리드에서 Columns의 title에 변수 넣어주기 var red = "" { field: "", title: red,
2022.01.25 -
해당 코드는 캔도 그리드를 데이터가 나타낼때 그 Row의 총합을 나타내는 방법입니다. Populate Aggregate Based Grid Using Kendo UI and JQuery In this article we will discuss how to Populate Aggregate Based Grid using Kendo UI and JQuery. www.c-sharpcorner.com //스키마 아래 추가 ,aggregate: [ { field: "r1Cnt", aggregate: "sum" }, ] // colums에 추가 footerTemplate: "#= kendo.toString(sum, \"n0\") #"
[kendo ui] 그리드 하단에 데이터 총합 나타내기 : aggregate해당 코드는 캔도 그리드를 데이터가 나타낼때 그 Row의 총합을 나타내는 방법입니다. Populate Aggregate Based Grid Using Kendo UI and JQuery In this article we will discuss how to Populate Aggregate Based Grid using Kendo UI and JQuery. www.c-sharpcorner.com //스키마 아래 추가 ,aggregate: [ { field: "r1Cnt", aggregate: "sum" }, ] // colums에 추가 footerTemplate: "#= kendo.toString(sum, \"n0\") #"
2022.01.24 -
페이징 없는 경우 columns: [ { title: "No", width: "50px", attributes : { style : "text-align : center; " }, template: "" }, dataBound : function() { var rows = this.items(); $(rows).each(function () { var index = $("#grid2").data("kendoGrid").dataSource.total() - $(this).index(); var rowLabel = $(this).find(".row-number"); $(rowLabel).html(index); }); } 페이지 있는 경우 columns: [ { title: "No", width: "50px"..
[kendo ui] 그리드 안에서 일련번호, 행번호 부여하는 방법 ( 페이징 없는 경우 && 페이징 있는 경우 )페이징 없는 경우 columns: [ { title: "No", width: "50px", attributes : { style : "text-align : center; " }, template: "" }, dataBound : function() { var rows = this.items(); $(rows).each(function () { var index = $("#grid2").data("kendoGrid").dataSource.total() - $(this).index(); var rowLabel = $(this).find(".row-number"); $(rowLabel).html(index); }); } 페이지 있는 경우 columns: [ { title: "No", width: "50px"..
2022.01.23 -
#Subversion 이란? -버전 관리 시스템의 한 종류이다. -SVN이라고 줄여서 부르기도 한다. -서버 + 클라이언트 모델을 따른다. -Git을 사용해봤다면 같은 종류의 소프트웨어라고 생각하면 된다. #Subversion 서버 -사내 서버에 설치되어 있다. 사내 인프라 담당자가 관리하고 있다. -URL : http://svn.mcnc.co.kr/svn/{프로젝트명} #Subversion 클라이언트 -Command Line으로도 조작 가능 -Tortoise SVN : 가장 많이 사용되는 클라이언트 -Subversive SVN Team Provider : 이클립스 플러그인으로 제공됨 #용어 Repository -파..
[SVN] SVN 관련 용어 정리#Subversion 이란? -버전 관리 시스템의 한 종류이다. -SVN이라고 줄여서 부르기도 한다. -서버 + 클라이언트 모델을 따른다. -Git을 사용해봤다면 같은 종류의 소프트웨어라고 생각하면 된다. #Subversion 서버 -사내 서버에 설치되어 있다. 사내 인프라 담당자가 관리하고 있다. -URL : http://svn.mcnc.co.kr/svn/{프로젝트명} #Subversion 클라이언트 -Command Line으로도 조작 가능 -Tortoise SVN : 가장 많이 사용되는 클라이언트 -Subversive SVN Team Provider : 이클립스 플러그인으로 제공됨 #용어 Repository -파..
2022.01.22