- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi,
You can add a function to a script object that returns your "Field" object, with the hideField method. So a function like;
function Field(field)
{
var that = { "field": field };
that.hideField = function()
{
this.field.presence = "hidden";
}
return that;
}
Could be called by
LcdObjects.Field(TextField1).hideField();
Regards
Bruce
Views
Replies
0 Likes
Total Likes