A lot of report builders make META DATA a Friday afternoon project. Recently there was a question on the OTN forum how you could make this mandatory.
You can do this editing the opensavedlg.js, saw.catalog.BrowserDialogViewer.prototype.updateModel part
saw.catalog.BrowserDialogViewer.prototype.updateModel = function () {
var b = this.model;
if (this.descEdit.value.length<6)
{
alert("Enter a valid Description");
this.descEdit.value = "DESC:";
}
else
{
b.description = this.descEdit.value;
};
After the edit redeploy.
Till Next Time
1 comment:
Oh that's nasty - I know a lot of lazy developers that will be very unhappy with that ;-)
Post a Comment