Hi Donald,
Ok, first note, your edit form's "on load" event should only have the "show html" action, because this is event to be loaded with the record data from connectivity, you may have other actions, but please make sure its working fine before trying to inject more stuff, and you should not use the form which have been used for the DBMRL tutorial🙂
Regarding the editing task, looks like the record with id = 1 is loaded fine:
[capsvcm] => Array
(
[ID] => 1
[Fname] => T. G.
[Sname] => Caperton
[Rank] => Private
[Unit] => Company K, 15th Northwest Arkansas Infantry
[State] => Arkansas
[CardID] => 224
[Hnumber] =>
[Source] => Compiled Service Records of the Confederate Soldiers Who Served in Organizations Raised Directly by the Confederate Government; (National Archives Microfilm Publication M258, 123 rolls); War Department Collection of Confederate Records, Record Group 109; National Archives, Washington, D.C.
[Comment] =>
[Side] =>
)
What are your form's fields names ? according to the data format above, your first name field name should be:
capsvcm[Fname]
otherwise, it will not be loaded with the record data.
Now to the linkable fields issue, take our FAQs page here as an example, the topic's link is a linkable field, its using form custom task = view, the model ID = Article, and the title field = title, so I had to add:
Article.title:Title <- in the List View fields
Article.title:view&cb={Article.id}&alias={Articl.alias} <- in the linkable fields box
So, I'm adding a reference to some fields in the list view box, then use it in the linkable fields box, you will then have to add "view" in the "Custom tasks" box, so that Connectivity can load the record's data when this task is triggered, as long as there is a cb value in the data received.
I then added a new form event called "view", used a "Debugger" action to check how my data is loaded, then used a "Thanks Message" action to display my data as regular🙂
I will try to write a tutorial later today.
Regards,
Max