If we define a field read-only into CRM and into the portal it shows (-). if you want to remove the bar you can use the following javascript for that field.
$(document).ready(function(){
$("#stdsscode").attr("readonly", true);
setTimeout( function(){$("#stdsscode").next("div").hide()}, 300);
});
Comments
Post a Comment