1
0
-1

Have created form to insert and update datalist and mapped them via userviews.
When DATALIST Edit is clicked, It opens the edit-forms as expected.

Issue: Its populating only the primary key value, Remaining all fields are empty.

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Hi, if you are creating forms and lists separately, you will need to ensure that the primary key value of the record in the form matches the actual record. It would be much easier to just use the CRUD Menu which will take care of all that for you.

      1. Godnyl Pula

        Issue was form field ID's were defined in camelCase (Ex: userName)
        When fetching data from DB it was not matching. (SELECT user AS userName from table);
        Renaming form fields to uppercase fixed. (Ex: USERNAME)

      CommentAdd your comment...