简体   繁体   中英

Disable ECB menu in SPGridview

I need to disable OOtb Filtering and Sorting menu in SPGridview and apply custom filtering and sorting. So far i have done custom part and it comnfuses with ootb filtering when user tried to use both. so suggest me a way to disable ootb filtering and sorting in spgridview

Disabling ECB menu in SPgridview is bit tricky and using jquery would be ideal to do that.

    <script type="text/javascript"> 
      $(document).ready(function() {
        $('.ms-unselectedtitle').removeAttr("onclick");
        $('.ms-unselectedtitle').removeAttr("onmouseover");
        $('.ms-menuimagecell').remove();
      }); 
    </script>

simply it will remove the onclick and onmousover attribute as well as remove the arrow image from spgridview header..

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM