(function () {
var user_name = "";
var doc = getCurrentDocument();
var childs = doc.getChilds("kf_mobilemeter");
println("childs ===" + childs);
if (childs != null && childs.size() > 0) {
for (var it = childs.iterator(); it.hasNext(); ) {
var subdoc = it.next();
user_name = subdoc.getItemValueAsString("user_name");
}
}
return user_name;
})() |