Hi all,
I want to save the all data from form, It can save to a object? How to do that? please give me some hlep, thank you so much!
Best Regards!
Elvin
If you create the form using Forms Builder, all you need to do is configure the storage mapping for control to the appropiate object attribute.
Hi,
Thank you for you reply.
I not using Forms Builder to design me form, so, may I use following code:
Text text = (Text) getControl("Test", Text.class);
And I don't know how to save the "text" on a object. I try the following code:
IDfSysObject sysobj = null;
sysobj = (IDfSysObject) session.newObject("dm_document");
sysobj.setObjectName("Report");
I want to use "sysodj.setValue()" this method, but I don't know how to set the second parameter. pls give me help!! Thank you!
What are you building your "form" with? WDK/Webtop? If so, you dont need to customize anything. You just need to create contentless object type and you can use properties component to display object attributes.