Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hello. I want to disable elements of a drop down (LONG as I am using from resource description) but using the function below won't do the work for me. I can disable the drop down as a whole but not it's elements. Is there any way I can do this.
Bool RenderSettings::GetDEnabling(GeListNode* node, const DescID& id, const GeData& t_data, DESCFLAGS_ENABLE flags, const BaseContainer* itemdesc){ case ELEMNTTODISABLE: { return dldata->GetBool(DL_CHECKBOX) == false; break; } return true; }
Thank you.
Hi,
unfortunately that's not possible. But instead you could implement GetDDescription() and change the content of the drop down as needed.
GetDDescription()
Cheers, Andreas
Hi @a_block Thank you for your answer.