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
Hi
with the latest version of leBlender (1.0.9.2) installed via NuGet on a clean Umbraco (7.7.7) site.
I can't seem to add custom properties to a LeBlender Editor.
when i select add property i see the side box with all the settings. but i have two issues :
the drop down seems to default back to either the top of bottom of the list no matter what i choose.
once you start typing in the title box, the drop down box disappears.
looking a the grid.editors.config.js file the config values are empty
"config": { "editors": [ { "name": "Title", "alias": "title", "PropertyEditorAlias": "", "propretyType": {}, "description": "Page Title" }, { "name": "Image", "alias": "image", "PropertyEditorAlias": "", "propretyType": {} } ],
i suspect it has something to do with the changes to the pramterConfig.prevalues.html file - but i am afraid i don't know enough about what this controller is doing to offer a fix.
I'm facing the same issue, the problem is here -> ~\App_Plugins\LeBlender\editors\leblendereditor\dialogs\parameterconfig.prevalues.html - Line 14.
<umb-control-group ng-if="model.value.DataTypeName || !model.value.name" label="Data type" description=""> <select ng-options="datatype.DataTypeName as datatype.name for datatype in availableDataTypes" ng-model="model.value.DataTypeName" required></select> </umb-control-group>
should be ->
<umb-control-group ng-if="model.value.DataTypeName || **model.value.name**" label="Data type" description=""> <select ng-options="datatype.DataTypeName as datatype.name for datatype in availableDataTypes" ng-model="model.value.DataTypeName" required></select> </umb-control-group>
but there are other bugs with this version.
I have testet a quickfix. See it here: https://github.com/Lecoati/LeBlender/issues/87
Best regards René
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Cannot create custom properties Umbraco 7.7
Hi
with the latest version of leBlender (1.0.9.2) installed via NuGet on a clean Umbraco (7.7.7) site.
I can't seem to add custom properties to a LeBlender Editor.
when i select add property i see the side box with all the settings. but i have two issues :
the drop down seems to default back to either the top of bottom of the list no matter what i choose.
once you start typing in the title box, the drop down box disappears.
looking a the grid.editors.config.js file the config values are empty
i suspect it has something to do with the changes to the pramterConfig.prevalues.html file - but i am afraid i don't know enough about what this controller is doing to offer a fix.
I'm facing the same issue, the problem is here -> ~\App_Plugins\LeBlender\editors\leblendereditor\dialogs\parameterconfig.prevalues.html - Line 14.
should be ->
but there are other bugs with this version.
I have testet a quickfix. See it here: https://github.com/Lecoati/LeBlender/issues/87
Best regards René
is working on a reply...