Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
We have recently changed from DTD to a schema. Since doing so we have lost our entities/symbols from the drop-down list. From what I have read on this forum site, it appears that PTC has not made an atempt to resolve this issue. I am wondering if anyone has come up with a solution. I would appreciate if anyone could provide a few suggestions. Thanks
Solved! Go to Solution.
Hi Kathleen--
You can work around this using some ACL code. In your editinit.acl file, add the following:
require _findentdlg;
set entitylist="...";
_findentdlg::_updateEntityList(current_window(),current_doc());
Replace the "..." with a space delimited list of entity references. With a schema, you won't have named character entities, so you'll have to use numeric entities, for example if you want to include the copyright and trademark symbols, it would look like this:
set entitylist="© ™"
For some reason, just setting the entitylist option string won't update the droplist automatically, that's why you have to use the _findentdlg::_updateEntityList() function to do that.
--Clay
Hi Kathleen--
You can work around this using some ACL code. In your editinit.acl file, add the following:
require _findentdlg;
set entitylist="...";
_findentdlg::_updateEntityList(current_window(),current_doc());
Replace the "..." with a space delimited list of entity references. With a schema, you won't have named character entities, so you'll have to use numeric entities, for example if you want to include the copyright and trademark symbols, it would look like this:
set entitylist="© ™"
For some reason, just setting the entitylist option string won't update the droplist automatically, that's why you have to use the _findentdlg::_updateEntityList() function to do that.
--Clay
Sorry it took me so long to respond...just tried it now and it works perfectly. Thanks a bunch!
Hi Kathleen,
Did Clay's answer help you get this resolved?
Let us know if you need additional help!
Yes - it worked perfectly!