CSS Media Print "WarningNo Row Selected"

QuestionsCSS Media Print "WarningNo Row Selected"
Steffen asked 10 years ago

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
Abu Ghufran answered 10 years ago

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>

Steffen answered 10 years ago

Found out it was #alertmod since your two weren't working.. But thanks anyways!

Abu Ghufran answered 10 years ago

Thanks for sharing the solution.

Your Answer

16 + 20 =

Login with your Social Id:

OR, enter

Attach code here and paste link in question.
Attach screenshot here and paste link in question.



How useful was this discussion?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate it.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?