Support for Component Apex class used for generating dynamic Visualforce

Issue #1663 resolved
James Wills created an issue

Please could you update Illuminated Cloud 2 to include support for the Component Apex class that is used to generate Dynamic Visualforce?  At the moment the code is being accepted by Webstorm but there seems to be some kind of recognition issue on the Illunimated Cloud side, from the red highlighting that is applied to the code. Also there aren’t any dynamic suggestions coming up when I type the code in, which would be most helpful.

Here is an example of a basic usage of the class (see also pp 655-657 of the Spring 20 version of the Apex Developers guide):

Component.Apex.OutputText head1 = new Component.Apex.OutputText();
head1.escape = false;
head1.value = '<h4>This is HTML.</h4>';
return head1;

Thanks for providing such a great product!

Comments (3)

  1. Scott Wells repo owner

    Thanks for filing, James! This just makes it easier to keep a request from falling through the cracks vs. email.

    I'll take a look at this for one of the next few builds. Should be pretty simple to address.

  2. Scott Wells repo owner

    FYI, full support will be included in the next build, likely next week as my kids are on spring break this week so I'm trying to stay in support-only mode:

    Dynamic_Visualforce_Apex.png

  3. Log in to comment