This functionality is supported only if you are using the Classic Agent.
You can use the ShowBorderlessTableFlags option in domex.ini to indicate input elements which you do not want Silk Test Classic to consider as input elements.
This feature is provided as a convenience to you, but it has not yet been thoroughly tested.
To describe the HTML input element, you must use the tag you’d use in HTML. For example, setting ShowBorderlessTableFlags=img indicates that a borderless table having at least 1 image input element, described by the <img> HTML tag, is considered to have NO input elements at all, even if other input elements such as push buttons are contained in the table. This flag is implemented using OR functionality. For example:
ShowBorderlessTableFlags=img|input
means that any HTML table with EITHER <img> tag(s) OR <input …> tag(s) is considered to have NO input elements. To be even more specific about the type of input element you want to describe, you can use the values that are permitted for the "type" attribute of the input tag in HTML. For example,
ShowBorderlessTableFlags=submit
means that the presence of the HTML construct <input type=submit>, which creates a submit button, causes Silk Test Classic to consider a table having this tag as having NO input elements.