I have a gridview with a number of boundfields. I'm trying to make it so that some boundfields are visible or invisible depending on the width of the screen. I've looked everywhere, and i tried visible="<%=javascript:widthFunction()%>" where

        function widthFunction(){
            viewportWidth = window.innerWidth;
            if(viewportWidth > "500")
                return true;
            else {return false;}

Clearly that's not working. I tried putting similar code in my code behind, but that requires the DataBind thing, which that won't work because

Parser Error Message: Databinding expressions are only supported on objects that have a DataBinding event. System.Web.UI.WebControls.BoundField does not have a DataBinding event.

How can this be solved?

link|improve this question

50% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.