[Display(
Name = @"Description",
Description = @"Description for OP pages",
GroupName = BlockGroupNames.Content,
Order = 20)]
public virtual string Description { get; set; }
Then we put this into production. After that, we agree width the Editors we should have a text area so we modify this code to use a UIHint like:
[Display(
Name = @"Description",
Description = @"Description for OP pages",
GroupName = BlockGroupNames.Content,
Order = 20)]
[UIHint(UIHint.Textarea)]
public virtual string Description { get; set; }
The problem is when I go to the test server I don't see the TextArea but when I am in my local I see it.
What should I do in order to see the same TextArea in local and in test environment?
Might be problem with propertys not in sync? Could you have a look in adminmode to see if the contenttype is still from code or not? Also you can actually try to reset the type and property.
Hello,
I defined a new property
Then we put this into production. After that, we agree width the Editors we should have a text area so we modify this code to use a UIHint like:
The problem is when I go to the test server I don't see the TextArea but when I am in my local I see it.
What should I do in order to see the same TextArea in local and in test environment?
Thank you