Ok, after posting in a new thread about this same issue, hoping to get attention of the developers, it has failed!
This is obviously sub-par javascript coding, as the FTB.Text value gets updated on my pages, yet the FTB's show BLANK (although they load just fine with correct values on initial page load). If you do this:
Protected
Sub CallBack1_Callback(ByVal sender As Object, ByVal As ComponentArt.Web.UI.CallBackEventArgs) Handles CallBack1.Callback
Dim
ftb1 As FreeTextBoxControls.FreeTextBox = FormView1.FindControl("ftb1")
FormView1.RenderControl(e.Output)
ftb1.RenderControl(e.Output)
End Sub 'CallBack1_Callback
This makes a WHOLE new control on the page, which still doesn't function, as everything is disabled. I don't mean it renders a new FormView control, it refreshes (DataBind) the FormView control, but it ADDS another FTB to the end of the FormView (not even inside it at this point). I realize the code above is not to be used, but I did this as an experiment. When using a Callback as we (our group), you call RenderControl to Reget the entire control, so it is updated with current information. Previously, when I've had problems with this, I use this code to figure out if the control (FTB in this case) is no longer associated with it's previous ClientID. 100% of the time this is the case. I'm not an expert programmer, but this is a serious issue and should be resolved. I certainly can't justify spending ANY money on this product unless it functions correctly. If anyone has a workaround to this problem, please send it my way, as nothing that has been suggested so far works in this case:
TreeView on left of page, FormView with FTB on right of page. Click on a category in the TreeView and it uses the ComponentArt Callback to retrieve the FormView (with FTB) with current information. This is all done with ObjectDataSources, it is not SQL or Access data sources. Our code is entirely object-oriented. Whichever DS is used, makes no difference, it's a problem with FTB. But, there has to be a solution! Even writing this post there are problems, I hope these forums aren't using FTB, as it keeps changing my font size when I underline, bold, italicize, etc.