2018-12-20

AM 5 : 00


@ 윈도우 LSTC 버전으로 포맷

@ Office 설치

@ 한글 오피스 설치

@ H2 DataBase 설치

@ MySql 설치

@ 기타 유틸리티 설치

@ Wifi 서비스 활성화


----------------------------------------


@Astory 로컬 서버 ON

@myapp.js alert 이벤트 적용

@Update 적용


----------------------------------------


AM 7 : 43


@종료...





@IPhone 5S가 사라질 것임





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// JavaScript CinitComplete: function () {
                var api = this.api();
                api.$('.switch input[type="checkbox"]').on('change' , function() {
                    var dText = (this.checked)? 'You want to activate the Product?': 'You want to de-activate the Product?';
                    var checked = this.checked;
                    var checkbox = $(this);
                    var value = checkbox.prop('value');
                    bootbox.confirm({
                        size: 'medium',
                        title: 'Product Activation/Deactivation',
                        message: dText,
                        callback: function (confirmed) {
                            if (confirmed) {
                                
                                var activationUrl = window.contextRoot + '/manage/product/'+ value +'/activation';
                                
                                $.post(activationUrl, function(data){
                                    
                                    bootbox.alert({
                                        size : 'medium',
                                        title : 'Information',
                                        message : data
                                    });
                                    
                                });
                            }
                            else {
                                checkbox.prop('checked', !checked);
                            }
                        }
                    });
                });
 
            }
 



'프로그래밍 > 작업일지' 카테고리의 다른 글

2018-12-21  (0) 2018.12.21
TAGS.

Comments