使用 JavaScript 填充 CLOB 集合
Populating a CLOB Collection Using JavaScript
请问,如何使用 JavaScript 动态操作将大于 32K 的 CLOB 值填充到集合中。
注意:我使用的是 Apex 版本:20.2
谢谢...
https://www.stinolez.com/2020/07/03/clob-in-apex-rich-text-editor/
// Run the Ajax Callback process
var p = apex.server.process('GET_CLOB', {
pageItems:['P1_ID_COLUMN']
}, {
dataType: 'html'
});
// When the process is done, set the value to the page item
p.done(function(data) {
apex.item('P1_CLOB_COLUMN').setValue(data);
});
请问,如何使用 JavaScript 动态操作将大于 32K 的 CLOB 值填充到集合中。
注意:我使用的是 Apex 版本:20.2
谢谢...
https://www.stinolez.com/2020/07/03/clob-in-apex-rich-text-editor/
// Run the Ajax Callback process
var p = apex.server.process('GET_CLOB', {
pageItems:['P1_ID_COLUMN']
}, {
dataType: 'html'
});
// When the process is done, set the value to the page item
p.done(function(data) {
apex.item('P1_CLOB_COLUMN').setValue(data);
});