November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Hi again,
Maybe you've already found a solution to these, but thought I'd answer anyway:
UIHint
.Honestly, if you're using nested PropertyList
with ContentReferences
you're probably better off going with blocks (which is also the preferred/supported approach).
Hi @David,
Interesting approach to resizing TinyMCE in a PropertyList. The TinyMCESettings class actually has Height
and Width
properties (as well as a Resize
enum, which you can use to restrict the editor from resizing horizontally). I had the same issue a while back and used an EditorDescriptor to set those: https://jakejon.es/blog/configuring-tinymce-when-its-used-in-an-episerver-propertylist
Hey @Jake,
I do like your approach. Especially the fact that it can be applied to properties selectively, where as mine is a somehwhat blanket approach. Thanks for the info!
PropertyList<T> of a simple POCO class that I want to use a ContentReference or IList<ContentReference> to other content items. The PropertyList works just fine, but when using the dialog to select content for that property, it is not filtering the content tree to just the allowed types specified. Any idea how to get this to work?
And here is the PropertyList definition on my page class:
The second issue comes up when you use a IList<ContentReference> property. When using a IList the same filtering issue happens, but the editor box is wider than the popup editor for the PropertyList item, and there is no way to resize the popup. Also, it mentions that you can drag items onto here, but the background is blocked by the modal popup. The only way to add references is to click the link to add them at the bottom. Any way to improve this experience?
The third issue is how the PropertyList grid displays ContentReference properties. It simply outputs the ID of the content (or comma-delimited list of IDs when using IList) which makes it hard to tell what is selected. I found a forum post on how to get around this by loading the content reference name using a separate property, but it only works when the list first loads. Changing or adding items do not show the name, it leaves the column blank. Is there a better way to do this?