<script type="text/javascript">
$(document).ready(function() {
$("#contentTable input").each(function(){
if(($(this).val()=="")&&($(this).prop("placeholder")=="")){
$(this).val("-");
}
});
$("#contentTable tbody tr td:not(:first-child)").each(function(){
if($(this).text()==""){
$(this).text("-");
}
});
});
</script>
$(document).ready(function() {
$("#contentTable input").each(function(){
if(($(this).val()=="")&&($(this).prop("placeholder")=="")){
$(this).val("-");
}
});
$("#contentTable tbody tr td:not(:first-child)").each(function(){
if($(this).text()==""){
$(this).text("-");
}
});
});
</script>