All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xml.formControls.js Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version

/**
 * Layout a form control.  Must be called to initialize and whenever the
 * form's dimensions change.
 */
function pack()
{
}

function moveLabel(name, x, y, width, height)
{
    var clipRect = svgDocument.getElementById(name + "-clip-rect");
    clipRect.setAttribute("x", x);
    clipRect.setAttribute("y", y);
    clipRect.setAttribute("width", width);
    clipRect.setAttribute("height", height);
    
    var rect = svgDocument.getElementById(name + "-rect");
    rect.setAttribute("x", x);
    rect.setAttribute("y", y);
    rect.setAttribute("width", width);
    rect.setAttribute("height", height);
    
    var text = svgDocument.getElementById(name + "-text");
    rect.setAttribute("x", x);
    rect.setAttribute("y", y);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy