NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: johanl on April 15, 2012, 08:41:16 PM

Title: Priming fields on NetwebForm on Insert
Post by: johanl on April 15, 2012, 08:41:16 PM
Hello

I need to prime a field on a NetwebForm, when I insert a record I want to display on the form a text field setup in the database but no matter what I do i cannot get it to work. The following code is embedded in the Preinsert embed point if the form:

    Access:WebTextSettings.Open()
    Access:WebTextSettings.UseFile()

    WEBTS:WebTextSettingNo = 1
    Access:WebTextSettings.Fetch(WEBTS:WebTextSetting_PK)
   
    PRE:PreRegistrationText = WEBTS:PreRegistrationText
   
    Access:WebTextSettings.Close()

If I use field priming with dummy text it works but above code no luck

Any suggestions?

Regards


Title: Re: Priming fields on NetwebForm on Insert
Post by: kevin plummer on April 15, 2012, 09:39:18 PM
Add a trace on PRE:PreRegistrationText after it is primed. If it is the correct value then it must be getting updated somewhere else. In that case look at the full source what is happening after this embed as well as searching on PRE:PreRegistrationText to see where it gets used. If its not the right value then something is amiss with your fetch.
Title: Re: Priming fields on NetwebForm on Insert
Post by: Bruce on April 15, 2012, 10:39:14 PM
add another line;
p_web.SSV('PRE:PreRegistrationText',PRE:PreRegistrationText)

cheers
Bruce