You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we can add or remove a style class from the component using: elements["componentName"].addStyleClass("style-name"); elements["componentName"].removeStyleClass("style-name");
The above method works but doesn't give strong typing of the element name as it would if we use: elements.componentName.addStyleClass("style-name"); elements.componentName.removeStyleClass("style-name");
The issue is that the second way of doing it results in build markers. This applies to all the standard methods that can be used on an element. Can we have all these methods added as valid methods for the components as well so that build markers are not shown please?
Thanks
Steve
The text was updated successfully, but these errors were encountered:
Currently we can add or remove a style class from the component using:
elements["componentName"].addStyleClass("style-name"); elements["componentName"].removeStyleClass("style-name");
The above method works but doesn't give strong typing of the element name as it would if we use:
elements.componentName.addStyleClass("style-name"); elements.componentName.removeStyleClass("style-name");
The issue is that the second way of doing it results in build markers. This applies to all the standard methods that can be used on an element. Can we have all these methods added as valid methods for the components as well so that build markers are not shown please?
Thanks
Steve
The text was updated successfully, but these errors were encountered: