devxlogo

Add Unsupported HTML Attributes in Visual InterDev 6 Objects

Add Unsupported HTML Attributes in Visual InterDev 6 Objects

While the Visual InterDev 6 Scripting Object Model (SOM) is great for rapid development of Web sites, the SOM doesn’t support all HTML attributes. For instance, the SOM doesn’t support Navigator’s wrap=virtual attribute in the Textarea tag. Although editing the VID script libraries is a bad idea, there’s nothing to stop you from making a copy of an existing script library, customizing the code, and saving the script library file under another name. For example, to fix the Textarea problem, your customized textbox.asp, called mytextbox.asp would change this line:

 strHTML = '<' + 'TEXTAREA id="' + this.id + '" name="' + this.name + '" rows=' + this._nRowCount;

To this:

 strHTML = '<' + 'TEXTAREA wrap=virtual id="' + this.id + '" name="' + this.name + '" rows=' + this._nRowCount;

Of course, you'll have to convert the script object to run-time text before you can edit the name of the included file:

 

Keep in mind that once you convert to runtime text, you can no longer edit the object with the design-time control.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist