Programming307 [MSSQL] MERGE Insert 후 IDENTITY ID 값 리턴 받아보기 -_-;; 예제 구체적이지 않아 죄송합니다;;INSERT @OutPutTbl SELECT * FROM ( MERGE TargetTbl AS TargetTbl USING (SELECT * FROM @InstUpdtTarget) AS InstUpdtTarget ON TargetTbl.IvtID = InstUpdtTarget.IvtID AND TargetTbl.PlaceCD = InstUpdtTarget.PlaceCD WHEN MATCHED THEN UPDATE SET TargetTbl.ID = InstUpdtTarget.ID WHEN NOT MATCHED THEN INSERT VALUES (InstUpdtTarget.ID) OUTPUT Inserted.ID,InstUpdtTarget.ID,$action ) AS Res.. 2015. 12. 10. [JQGrid] 특정 Row editable:true 속성 값에 따라 수정 막아버리기;;; afterInsertRow: function (rowid, rowdata, rowelem) { var specificValue = $("#tbNewRegList tr").eq(rowid).children("td:eq(8)").text(); if ($.trim(specificValue) != "") //editable 이 설정 된 셀(td) 부분 $("#tbNewRegList tr").eq(rowid).children("td:eq(4)").attr("disabled", "disabled"); } 방법을 찾다찾다 도저히 못 찾아서 편법을 써봤습니다 ;; JQGrid afterInsertRow 발생시 (한 Row 추가 될 때 마다 이벤트 발생 ) editable : true 로 설정된 열에 대해 특정 값에 따.. 2015. 12. 3. enum Flags Attribute static void Main() { PipeDirection d = PipeDirection.B | PipeDirection.C; Console.WriteLine(d); Console.WriteLine((int)d); } [Flags] public enum PipeDirection : uint { A = 0x01, B = 0x02, C = 0x04 } 16진수 B와 C를 더하면 6 결과는 B,C 6 Flags 를 주석 처리 하면 결과는 6 6 이 나옵니다 ;; 전 아직 정확히 이해를 못한상태입니다=0=;; 2015. 12. 1. [JQuery] JQGrid 셀 클릭시 달력 표시 간단한 예제 역시나 예제가 형편없어 죄송합니다;;;;; { name: 'PRODUCTIONDT', index: 'PRODUCTIONDT', width: 80, sortable: false, align: "center" ,editable: true, editoptions : { dataInit : function(e) { $(e).datepicker(); } } }, 날자 클릭시 "yy-mm-dd" 형식으로 표시 할 시에는 $(e).datepicker({ dateFormat: 'yy-mm-dd' }); 년도 조정 changeYear: true 월 조정 changeMonth: true 클릭시 다른 셀에 값 채워 놓기 -0- ;; onSelect: function (dateText, inst) { var selr = jQ.. 2015. 11. 18. 이전 1 ··· 38 39 40 41 42 43 44 ··· 77 다음