I see this question has already been asked around a IE9 but which is adding extra columns in random rows of a html table. The root issue seems to be a IE 9 bug that is fixed in IE 10 (but i have a lot of IE9 users)
It states it usually happens with tables built via ajax but i am seeing this on regular pages that output html tables.
There is a workaround Javascript solution but the answer assumes that you were building a table with Javascript (from an ajax call). I am using a partial view (or in some cases just rendering a regular formatted html table directly on a single page) so I wanted to find out if there is a solution to prevent this UI issue on IE9 when you are simply rendering direct html on page.
I want to avoid having to literally have no white space in my actually code as that will be very hard to maintain.
This is possible. For partial views it's simpler, because you can capture the output of
Html.Partial
directly, modifying it before the response is written to the output stream.In order to do that, you'd create an extension method, which could look something like this:
As you can see, it's capturing the output of
Html.Partial
directly, and then performing the replacement on that. You'd use it in your view like so:However, to do this for actual views requires a lot more work, and certainly a lot more care when using it. In order to do this, we actually need to capture, and modify, the response stream before it's sent to the client.
The
IE9TableFixFilter
below is very heavily based on code from Minify HTML with .NET MVC ActionFilter.The majority of code here is filling in implementations for
abstract
members ofStream
. The important part is what's going on in theWrite
method.The version of
Write
from the article first makes a copy of the bytes of the stream without actually using them. There's no mention there if this is for some specific reason, but it seems useless to me, so I commented those lines out.Next up, we need to create a simple
ActionFilter
to apply the response filter to:Now that's all done, I would strongly recommend that you don't apply this filter globally, instead choosing to decorate it on actions that require its use. The reason for that is because it will naturally incur some performance penalty, so it's best to be explicit about when it's actually needed. You won't need the partial extension method when using this. So simply decorate your actions to use it:
Update
To make the filter attribute more efficient, you could actually just apply it to browsers that contain the user-agent string
MSIE 9.0
: