I'm adding now media print to the css sheet and I was asking myself if it's possible to turn off the warning "WarningNo Row Selected" when printing?
3 Answers
Hello,
This css style will hide those messages, as by inspecting dom using firebug i found following div ids.
Hiding them will remove it from print. (here list1 is grid id)
<style>
@media print
{
#alerthd_list1,#alertcnt_list1
{display:none;}
}
</style>
Your Answer