Hi,
I'm new to Apex development. I have an application in apex 22.2.3 developed by someone else. I try to extend its functionality. I have a modal page and I want to add a text field (optional, 250 characters long) (appropriate column I have already added to database - varchar2). I added a text field and it is properly visible on the modal page, but when I try to add value and then press submit button it doesn't update in the database. I have checked various options, but failed to find answer what is wrong. Which options should I change to have the value.
I added the text field to values fetched by sql query in Source:
select ID,
ID,
Test1,
Test2,
COMMENT ←-- my text field
from AB_CD
I have checked the option Submit when Enter is pressed. The whole form is submitted properly except this field.
Please help.