본문 바로가기

Programming307

[JQuery] JQGrid 헤더 폰트 변경 예제 ui.jqgrid.css 중 font-family를 추가하였습니다. .ui-jqgrid .ui-jqgrid-htable th div {overflow: hidden; position:relative; height:17px;font-family:'NanumGothicB','나눔고딕', "돋움", dotum;font-size:15px;} 2015. 7. 22.
lambda parameter 값이 Null 일 경우 전체 출력, parameter 가 NULL 이 아닐 경우 Like 로 검색 (Null Or Like) 값이 Null 일 경우 전체 출력 값이 존재할경우 Like 로 검색 public List GetTest(string parameter) { return Db.TableName.Where(n => string.IsNullOrEmpty(parameter) || n.Parameter.Contains(parameter)).ToList(); } 2015. 7. 10.
Tuple을 이용한 데이터 저장 및 전달 간단한 예제 매우 성의없고 허접하지만 그래도 만들어보았습니다 ;; class Program { static void Main(string[] args) { Test(); } public static Tuple TupleSimpleExam() { Tuple tuple = new Tuple("string", 100); return tuple; } public static void Test() { Tuple returnValue = TupleSimpleExam(); Console.WriteLine("{0} , {1} " ,returnValue.Item1, returnValue.Item2); } } 2015. 7. 9.
[JQuery] JQGrid ColModels, ColNames 동적 바인딩 간단한 예제 // 동적으로 ColNames , ColModels 를 JSON 타입으로 Array에 Push function GridSettingTest() { var colNames = []; var colModels = []; colNames.push(컬럼1,컬럼2,컬럼3,컬럼4); colModels.push({ name: data1, index: data1, sortable: false, frozen: true }); GridSettingTest(colNames, colModels);( 잘못된 내용 ) GridTest(colNames, colModels); } // JQGrid 초기화 function GridTest(colName, colModels) { jQuery("#tbList").jqGrid({ datat.. 2015. 6. 30.