Hello everyone, Is it possible to insert data from texfield to a db not showing column value in textfield? I guess doCommit works if only i use this style: <textfield name="tname" datasource="query1" column="NAME"/> but i want user to write info in texfields ( of course it must be empty ) and save these data into db. Thank you in advance |
Hi Smith, To achieve your request, you can use a textField without datasource/column binding:
You can retrieve the value entered into this textField using api_component.getValeTX/NR/DT.. APIs:
Once you retrieve the component's value, you can save it into db either through your custom DML statments or Formspider datasources. Hope this helps, Hi Ibrahim, Thank you. My mistake was that I did not use commit in procedure.
(16 Mar '14, 17:56)
Smith
|