function displayRow(show) { var row = document.getElementById("hideRow"); if (row != null) { if (show) row.style.display = ''; else row.style.display = 'none'; } }
html code for table
1 | 2 | 3 |
4 | 5 | 6 |
7 | 8 | 9 |
SP Tech Buddy blog will share the Sharepoint, Power Platform,.net and javascript experiences news with community
function displayRow(show) { var row = document.getElementById("hideRow"); if (row != null) { if (show) row.style.display = ''; else row.style.display = 'none'; } }
1 | 2 | 3 |
4 | 5 | 6 |
7 | 8 | 9 |
0 comments:
Post a Comment