Views
Replies
Total Likes
Views
Replies
Total Likes
Could you post that code here?
Views
Replies
Total Likes
Will be like this.
subformname.access = "readOnly"; //javaScript
$.access = "readOnly"; //formcalc
update the "subformname" with the name of ur subform which want to make readOnly. Place this on a required event based on ur requirement, both javascript and formcalc sysntaxes are above.
Views
Replies
Total Likes
Raghu,
Thank you for your response. My request was intended to be a response to pguerette's post:
If anyone has this code, that is what I was asking for.
Views
Replies
Total Likes
If need only at "subform" level please check the thread: http://forums.adobe.com/message/4389004#4389004
If need at "form root" level, Please check the below function.Pass "oParentNode" as root of the form.
function traverse(oParentNode)
{
var allChildElements;
var intNumElements;
var currentElement;
var i;
var j;
// Get all occurances of the parent element
intNumOccurances = oParentNode.all.length;
for (i=0; i < intNumOccurances; i++)
{
oCurrentParent = oParentNode.all.item(i);
// Get all the child nodes of the parent element
allChildElements = oCurrentParent.nodes;
// Total number of elements in the object
intNumElements = allChildElements.length;
// Loop through all the child elements
for (j=0; j < intNumElements; j++)
{
currentElement = allChildElements.item(j);
// If the element is another subform we'll recursively call the function again
if (allChildElements.item(j).className == "subform")
{
traverse(currentElement);
// If the objects are fields or exclusive groups then we'll encode them
} else {
if (currentElement.className == "field" || currentElement.className == "exclGroup")
{
//Here have the access for both field and value
//your code comes here
fields += currentElement.name + "\t";
values += currentElement.rawValue + "\t";
}
}
}
}
} // end traverse function
Hope it may helps.
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Like
Replies
Views
Likes
Replies
Views
Likes
Replies