سؤال

I am trying to delete Content Type drop down menu from EditForm.aspx but not able to do it?

Any ideas? Pls shoot

-saumil

هل كانت مفيدة؟

المحلول

You'll have to get into the DOM and find a good selector for this. Once you find one, the code should look similar to:

    <script type="text/javascript">
    $(document).ready(function(){
        $("selector").hide();
    });
    </script>

نصائح أخرى

You can hide it with jQuery or you can create a custom list form and hide it that way as well. Each approach is valid, but the latter is more conducive to performance. If you are allowed to use SPD, I'd just hide the drop down with a custom list form.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى sharepoint.stackexchange
scroll top