Hi,
I think I've got a bug with the latest release of LeBlender v0.9.16
I've created a custom editor with a link property using a content picker.
I can add it to the grid and select a content node.
Although I'm finding that I cant delete the selected node.
I have the same custom editor using LeBlender 0.9.15 that I can delete the node.
I found out what was happening, it was a empty value control issue within /Lecoati.LeBlender/Lecoati.LeBlender/common/directive/blendereditorwrapper.js (line 34)
if (newValue) {
Must be
if (newValue != undefined) {
I have just uploaded a new version with this patch, check v0.9.18
LeBlender - Content Picker - Cant Delete Selection
Hi, I think I've got a bug with the latest release of LeBlender v0.9.16
I've created a custom editor with a link property using a content picker. I can add it to the grid and select a content node. Although I'm finding that I cant delete the selected node.
I have the same custom editor using LeBlender 0.9.15 that I can delete the node.
Anyone else finding this problem?
btw, great package
Martin
Hi Martin,
I found out what was happening, it was a empty value control issue within /Lecoati.LeBlender/Lecoati.LeBlender/common/directive/blendereditorwrapper.js (line 34)
Must be
I have just uploaded a new version with this patch, check v0.9.18
Thanks for your feedback
is working on a reply...