Upload File
Upload File
Update Code.gs
///////////////////////////////////////////////////////////////////////////////////
/
-----------------------------------------------------------------------------------
----
file1,
file2,
-----------------------------------------------------------------------------------
----
Update JavaScript
///////////////////////////////////////////////////////////////////////////////////
///
-----------------------------------------------------------------------------------
----
{
targets: [7], //colom 7 adalah kolom file1
className: 'dt-body-center',
"render": function(data, type, row, meta) {
if (type === 'display' && data.length >
20) {
data = '<a href="' + data + '?
text=' + row[7] + '" target="_blank">' + '<i class="fa fa-file" style="font-
size:15px;color:black"></i>' + '</a>';
}
return data;
}
},
{
targets: [8], //colom 8 adalah kolom file2
className: 'dt-body-center',
"render": function(data, type, row, meta) {
if (type === 'display' && data.length >
20) {
data = '<a href="' + data + '?
text=' + row[8] + '" target="_blank">' + '<i class="fa fa-file" style="font-
size:15px;color:black"></i>' + '</a>';
}
return data;
}
},
-----------------------------------------------------------------------------------
----
Update form
///////////////////////////////////////////////////////////////////////////////////
///
-----------------------------------------------------------------------------------
----