Umbraco 4.5.2 - 创建自定义 umbraco 数据编辑器设置类型
我似乎找不到任何有关如何在 umbraco 6.2 (Juno) 之前编辑数据编辑器设置的信息。有没有什么简单的办法,应该是可以的。如果您不明白我的意思,我想做与 http://www.nibble 相同的操作。 be/?p=96 - 仅适用于 umbraco 4.5.2。
谢谢 :)
I can't seem to find anything on how to edit the data editor settings before umbraco 6.2 (Juno). Is there any simple way, it must be possible. If you don't understand what i mean i want to do the same as http://www.nibble.be/?p=96 - just for umbraco 4.5.2.
Thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要创建 3 个类:Class 1 DataEditor、
Class 2 DataType、
Class 3 PrevalueEditor
我希望这可以帮助您入门:)
顺便说一句,这也适用于 umbraco 6.2
You need to make 3 classes Class 1 DataEditor
class 2 DataType
Class 3 PrevalueEditor
I hope this can help you get started :)
Btw this also works for umbraco 6.2
设置称为预值,您需要一个实现 IDataPrevalue 的 PrevalueEditor 类。看一下这篇博文中的示例:
http://www.eyecatch.no/blog/my-first-umbraco-datatype---part-2-rendering-a-recaptcha-control.aspx
Settings are called prevalues and you need a PrevalueEditor class that implements IDataPrevalue. Have a look at an example in this blog post:
http://www.eyecatch.no/blog/my-first-umbraco-datatype---part-2-rendering-a-recaptcha-control.aspx
这篇半博文章涉及对 v4.5 及之前的版本执行类似的操作,其中还有一个针对更旧版本的链接,我不久前关注过该版本,发现非常有帮助。
http://www.nibble.be/?p=62
This nibble post concerns doing a similar thing for v4.5 and prior, there is also a link within this for an even older version that I followed a while ago and found very helpful.
http://www.nibble.be/?p=62