Page 1 of 1

RI & HI attributes problem

Posted: Thu Sep 13, 2012 2:19 pm
by jac53
JDEdwards is using the combination of HI/RI attributes to no display input/output fields in the screens.
Genie does not recognize that condition and I having an issue in every screen using that.

Attached it is a document with print screens example of how it looks in the Green screen and in Genie.

Is there a way to solve this problem at the skin or at the screen level?

Re: RI & HI attributes problem

Posted: Thu Sep 13, 2012 3:31 pm
by jac53
By the way the ND attribute is not recognized either by Genie.

Re: RI & HI attributes problem

Posted: Thu Sep 13, 2012 7:13 pm
by Alex
Since you can still type into these types of fields, Genie translates these attributes into password fields.

You can override this functionality by modifying the CSS for your skin. The CSS class assigned to these fields is A27. So, to hide the fields, you can use the following CSS code:

Code: Select all

INPUT.A27 /* Nondisplay Input */
{
  visibility: hidden;
}
However, be aware, that when you do this, the password field on your Sign On screen will disappear too. To remedy this, use the Visual Designer on the Sing On screen override the "visibility" property back to visible.

Re: RI & HI attributes problem

Posted: Thu Sep 13, 2012 7:38 pm
by jac53
No,those fields which I do not want to display are protected I can not key in. I can key in only in the fields beside 1) 2) 3) See attache document

Re: RI & HI attributes problem

Posted: Thu Sep 13, 2012 10:55 pm
by Alex
In my simple test program on the green-screen, I was able to type into the fields; even though the text I was typing was not visible.

But, at any rate, you should be able to use the CSS technique I described above. You can verify that A27 is the right CSS class by clicking on the fields in the Genie Designer and checking the "css class" property in the Properties Window. If it's a different class, simply adjust the example I provided.

I hope this helps.