Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an alternate view for a widget. In that view I'm suppressing the wrapper using code like this:

Model.Metadata.Wrappers.Clear();

This works, but I'd like to only suppress the Widget.Wrapper. Right now it is also suppressing the Widget.ControlWrapper which prevents the edit buttons from displaying when I have the Widget Control Wrapper module enabled.

Is there any way to clear only the Widget.Wrapper while keeping the Widget.ControlWrapper?

share|improve this question

1 Answer

up vote 0 down vote accepted

I was able to add back the Widget.ControlWrapper like this:

Model.Metadata.Wrappers.Add("Widget_ControlWrapper");

This seems to be working just like I wanted.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.