Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Has anyone used LeBlender to render an Archetype data type?
If so, can I get some pointers? I guess I need to create an editor for the specific Archetype.
Thanks
Hi Michael,
Yes you can use Archetype with LeBlender, the process will be:
Then, your will have to create your partial view for this grid editor and will be able to convert the Leblender items to an ArchetypeModel:
Model.Items.First().GetValue
Thanks - got it working.
For reference here is what I did to get my model back in the editor:
@using Archetype.Models; @using Archetype.Extensions;
@{ var myarchetypemodel = Model.Items.ElementAt(0).GetValue
}
Fyi: You can convert the LeBlender item value to an ArchetypeModel:
Model.Items.First().GetValue< ArchetypeModel>("list")
Mark it as solve please :)
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
LeBlender with Archetype
Has anyone used LeBlender to render an Archetype data type?
If so, can I get some pointers? I guess I need to create an editor for the specific Archetype.
Thanks
Hi Michael,
Yes you can use Archetype with LeBlender, the process will be:
Then, your will have to create your partial view for this grid editor and will be able to convert the Leblender items to an ArchetypeModel:
Model.Items.First().GetValue
Thanks - got it working.
For reference here is what I did to get my model back in the editor:
@using Archetype.Models; @using Archetype.Extensions;
@{ var myarchetypemodel = Model.Items.ElementAt(0).GetValue
}
Hi Michael,
Fyi: You can convert the LeBlender item value to an ArchetypeModel:
Mark it as solve please :)
is working on a reply...