MACROMEDIA DREAMWEAVER 8-EXTENDING DREAMWEAVER Manual page 418

Extending dreamweaver
Table of Contents

Advertisement

Returns
A Boolean value that indicates whether the drop operation was successful:
otherwise.
false
Example
The following example determines if the component is a table or view, and then returns the
appropriate
bHandled
function handleDesignViewDrop(componentRec)
{
var bHandled = false;
if (componentRec)
{
if ((componentRec.objectType == "Table")||
(componentRec.objectType == "View"))
{
alert("popup Recordset Server Behavior");
bHandled = true;
}
}
return bHandled;
}
handleDoubleClick()
Availability
Dreamweaver MX.
Description
When the user double-clicks the node in the tree, the event handler is called to allow editing.
This function is optional. The function can return a
event handler is not defined. In this case, double-clicking causes the default behavior, which
expands or collapses the tree nodes.
418
Components
value:
value, which indicates that the
false
if successful;
true

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the DREAMWEAVER 8-EXTENDING DREAMWEAVER and is the answer not in the manual?

This manual is also suitable for:

Dreamweaver 8

Table of Contents