-
Notifications
You must be signed in to change notification settings - Fork 9
/
charset-g.prg
91 lines (54 loc) · 1.55 KB
/
charset-g.prg
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// {% LoadHrb( 'lib/tweb/tweb.hrb' ) %}
#include {% TWebInclude() %}
#define PATH_DATA HB_GetEnv( "PRGPATH" ) + '/data/'
function main()
LOCAL o, oWeb
LOCAL hParam := GetMsgServer()
local aRows := {}
local cHtml := ''
if !empty( hParam )
USE ( PATH_DATA + 'charset.dbf' ) SHARED NEW VIA 'DBFCDX'
dbgotop()
while !eof()
if hParam[ 'utf8']
cHtml += UNITOU8( FIELD->PAR1, 1 ) + ' - ' + UNITOU8( FIELD->PAR2, 1 ) + '<br>'
else
cHtml += FIELD->PAR1 + ' - ' + FIELD->PAR2 + '<br>'
endif
dbskip()
end
AP_SetContentType( "application/json" )
?? hb_jsonEncode( { 'html' => cHtml } )
retu nil
endif
//DEFINE WEB oWeb TITLE 'Test CharSet - Dbf' CHARSET 'utf-8' INIT
DEFINE WEB oWeb TITLE 'Test CharSet - Dbf' INIT
DEFINE FORM o
HTML o PARAMS oWeb
<h3>
Charset: <$ oWeb:cCharset $>
</h3><hr>
ENDTEXT
INIT FORM o
ROWGROUP o
BUTTON LABEL 'Load Data' GRID 4 ACTION 'Load()' OF o
SWITCH ID 'utf8' VALUE .F. LABEL 'Convert To Utf8' OF o
ENDROW o
DIV o ID 'content'
ENDDIV o
HTML o
<script>
function Load(){
$('#content').html( '')
var oPar = new Object()
oPar[ 'utf8'] = $('#utf8').is( ":checked" )
MsgServer( "charset-g.prg", oPar, PostLoad )
}
function PostLoad( response ) {
console.log( response )
$('#content').html( response.html )
}
</script>
ENDTEXT
END FORM o
retu nil