I want to set a particular field (employee id) as display only (or gray) , basically unedittable after it's selected in a Grid .. I applied the code on the Field Edit event of that field and I'm able to set the particular field (employee id) in the 1st row as display only (when I select it from the look-up list). However, as I add the next row in the grid and select the particular field (employee id) from my look-up list, it no longer becomes display only.
So, basically I am able to set the particular field (employee id) as display only only in the 1st row. I'm unable to set it as display only in the next rows I insert.
PS : I'm inserting rows in a grid (and NOT retrieving) .
Please help, it's a bit urgent.
Title | Under | Posted on |
---|---|---|
Component interface Error: no rows exist for the specified keys | PeopleSoft Technical | 03/15/2019 - 3:54am |
ADD 24 months starting from current month.(peoplesoft) | PeopleSoft Functional | 07/29/2018 - 8:44pm |
TRC values dropdown | PeopleSoft Technical | 04/04/2018 - 12:54am |
how to find missing sequence in GRID and print the mising sequence number while saving through peoplecode | PeopleSoft Technical | 09/11/2017 - 4:49am |
Is it resolved yet or are you still trying to figure out?
make it display only in the rowinsert event of particular field...so that when u add new rows on grid it will be display only field.....
Raj
Use IsRecordnew keyword.
If IsRecordnew then
--dosomething-- for example graying the field
else
--dosomethingelse--
end-if;
Note:IsRecordNew is for inserting rows into the new lines.