Giáo án link (giaoan.link) chia sẻ tiếp đến bạn project Google sheet – App Script – Web app, Click Button Show Popup html. Ở project này các bạn sẽ thiết kế một button trên web app và khi các bạn click vào button này sẽ hiển thị lên 1 popup dạng html. Trên popup này các bạn có thể embed các web app khác vào. Bạn có thể xem video hướng dẫn bên dưới cùng với code tham khảo.
Các bài học excel ứng dụng khác:
- Googlesheet Apps script Webapp | Tạo trang trắc nghiệm online như Quiz
- Google sheet Apps script | Trang trắc nghiệm Quiz – Cập nhật câu hỏi, trả lời, thời gian đếm ngược
- Google sheets | Number to text, Hàm đọc số thành chữ Ứng dụng taoh hóa đơn, phiếu chi.
- Googlesheet Apps script Webapp | Tạo mã QR Code từ nội dung nhập vào – QR Code Generator
- Google sheet apps script | Dropdown đơn giản lấy dữ liệu từ google sheet – Simple dropdown
- Apps script Webapp CSS – HTML – JS | Tạo ứng dụng Ghi chú trên nền tảng webapp – website
- Google sheet Apps script | Hàm setTimeout định thời gian xóa các trường Input khi click Button
- Apps script Webapp | Sử dụng CSS tạo hiệu ứng sóng nước – Trang trí đẹp mắt cho web và blog.
- Google sheet Apps script Tiện ích tạo mã vạch (barcode) trên webapp
- Google sheet, apps script, webapp | Load và Hiển thị biểu đồ theo năm chọn từ List box
Mã trong file “Code.gs”
function doGet(e) {
var html = HtmlService.createTemplateFromFile("index").evaluate().setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL);
return html;
}
function submitData(obj){
var ws=SpreadsheetApp.openById("1vvEW3aivLq17deR_cwUzduTQMvHKPToOXM6BubDpIqM");
var ss=ws.getSheetByName("Data");
var flag = 1;
var lr=ss.getLastRow();
for(var i=2;i<=lr;i++){
var vId=ss.getRange(i,1).getValue();
if(vId==obj){
flag=0;
let b1= ss.getRange(i,2).getValue();
let b2= ss.getRange(i,3).getValue();
let b3= ss.getRange(i,4).getValue();
let b4= ss.getRange(i,5).getValue();
let b5= ss.getRange(i,6).getValue();
var data="<table>"
+"<tr>"
+"<th> MÃ SINH VIÊN </th><th> HỌ VÀ TÊN </th><th> LỚP </th> <th>MÔN TOÁN </th><th> Môn Lý</th><th>Môn Hóa</th>"
+"</tr> "
+"<tr>"
+"<td>"+obj+"</td><td>"+b1+"</td><td>"+b2+"</td><td>"+b3+"</td><td>"+b4+"</td><td>"+b5+"</td>"
+"</tr> </table>";
return data;
}
}
if (flag==1){
var data = "<span style = 'font-size:1.5em; color:red'>KHÔNG TỒN TẠI MÃ SINH VIÊN NÀY NÀY!</span>";
return data;
}
};
Mã trong file “javascript.html”
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.1/dist/umd/popper.min.js" integrity="sha384-SR1sx49pcuLnqZUnnPwx6FCym0wLsk5JZuNx2bPPENzswTNFaQU1RDvt3wT4gWFG" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<style>
.hideform {
display: none;
}
body {
background: #ffffff;
}
table{
align: middle;
font-family: times;
border-collapse: collapse;
width: 100%;
}
td{
border: 1px solid #000000;
text-align: center;
padding: 8px;
}
th{
border: 1px solid #000000;
background-color: yellow;
text-align: center;
padding: 8px;
}
tr:nth-child(even){
background-color: #dddddd;
}
.frame{
box-shadow: 10px 10px 15px rgb(193,182,182), -6px 6px 15px #eee;
padding: 20px;
max-width: 60%;
margin: 0px auto;
margin-top: 50px;
border-radius: 10px;
background: white;
}
button {
text-transform: uppercase;
transition: transform 80ms ease-in;
border-radius: 7px;
}
button:active{
transform: scale(0.95);
color: white
}
.btn.focus, .btn:focus {
outline: 0;
box-shadow: none!important;
color: white;
}
.btn-info: hover {
background-color: gold;
color: white;
border-color: gold;
}
.btn-info {color: white;}
.boxTitle {
border: 1px solid rgba(0,0,0,0.2);
border-radius: 40px 0px 40px 0px;
padding: 1.5rem;
margin-left: 10px;
margin-right: 10px;
border-radius: 13px;
margin: auto;
width: 100%;
text-align: center;
}
.box {
border: 1px solid rgba(0,0,0,0.2);
padding: 1.5rem;
margin-left:10px;
margin-right:10px;
border-radius: 13px;
margin: auto;
width: 100%;
}
.inp {
border:none;
border-bottom: 1px solid rgba(0,0,0,0.2);
border-radius: 0px;
padding: 5px 10px;
outline: none;
}
[placeholder]:focus::-webkit-input-placeholder {
transition: text-indent 0.4s 0.4s ease;
text-indent: -100%;
opacity: 1;
}
.inp.focus, .inp:focus {
outline: 0;
box-shadow: none!important;
/* color: green; */
border-bottom: 1px solid rgba(0,0,0,0.2);
}
</style>
Code file “index.html”
<html>
<head>
<?!=HtmlService.createHtmlOutputFromFile('javascript').getContent();?>
</head>
<body>
<div class="col text-center">
<p style="color: red;">Đây là ví dụ về Popup upload file trên nền một Web page. Các bạn có rất nhiều ứng dụng để dử dụng phương thức này.</p>
</div>
<div class="center hideform frame">
<div class="col text-center">
<button id="close" style="float: right;">X</button>
<p style="font-size:20px; color: blue; font-weight:bold;">TÌM KẾT QUẢ HỌC TẬP CỦA SINH VIÊN</p>
</div>
<form align="center">
<div class="mb-1">
<div class="form-check form-check-inline">
<label style="font-weight: bold;" for="id" class="form-label">MÃ SINH VIÊN:</label>
</div>
<div class="form-check form-check-inline">
<input type="text" id="id" name="id" class="form-control form-control-sm" placeholder="Điền mã sinh viên" required>
</div>
</div>
<button type="button" class="btn btn-primary" onclick="info()">Lấy thông tin</button>
<hr>
<div align="center" id="result"></div>
</form>
</div>
<div class="col text-center">
<button id="show" class="btn btn-info">CLICK VÀO ĐÂY XEM ĐIỂM SINH VIÊN</button>
</div>
<script>
//Hien thi popup
$('#show').on('click', function () {
$('.center').show();
$(this).hide();
})
$('#close').on('click', function () {
$('.center').hide();
$('#show').show();
})
//Hien thi thong tin sinh vien
function info(){
let msv= document.querySelector('#id').value;
let updateLocation = document.querySelector('#result');
updateLocation.innerHTML = "Đang lấy dữ liệu...";
function onFailure(error){
let warning = "<span style='color:red'>"+error+"</span>";
updateLocation.innerHTML=warning;
};
function onSuccess(response){
let result = "<span style='color: black'>"+response+"</span>";
updateLocation.innerHTML=result;
};
google.script.run.withFailureHandler(onFailure)
.withSuccessHandler(onSuccess)
.submitData(msv);
};
</script>
</body>
</html>