If you want to hide a Column in HTML Table you can use JQuery to do it.
function hideTableColumns(idTable, columnsIndexs)
{
$(“#” + idTable + ” tr”).each(function() {
for(var i = 0; i < columnsIndexs.length; i++)
{
var colIndex = columnsIndexs[i];
$($(this).find(“td”)[colIndex]).hide();
}
});
}
{
$(“#” + idTable + ” tr”).each(function() {
for(var i = 0; i < columnsIndexs.length; i++)
{
var colIndex = columnsIndexs[i];
$($(this).find(“td”)[colIndex]).hide();
}
});
}
Autor: Matías Creimerman
Personal Website
Linkedin Profile
Blog
GitHub
Facebook
Twitter
Google+
Youtube
Asp.Net Member Profile
MVA Profile
MCP Profile (Microsoft Certifications)
Matias Creimerman
Anuncios