all,
i'm developing a web page that performs the following.
here's what works without ajax...
1. user enters an parent account identifier in a textbox
2. textbox performs an ajax postback and adds rows to 2 System.Web.UI.WebControls.Table(s) in code.
a. child account selector table
b. another table that displays items that a selected child account can subscribe to.
3. user clicks on child account selector table row.
4. row performs __dopostback() call
5. page is refreshed, the selected child account (table row) is highlighted and the items that the child account can subscribe are displayed. additionally, the items (table rows) the child account has already subscribed to are ghosted (disabled).
i have attempted to ajaxify the row selection of the child account selector table row with no success. it is not necessary but it would give a better user experience. i've looked at telerik help and attempted one of the examples but with no luck. specifically, the example where:
in javascript:
<%=RadAjaxManager.ClientID %>.AjaxRequest(argument
);
and in code behind:
protected void RadAjaxManager_AjaxRequest(object sender, Telerik.WebControls.AjaxRequestEventArgs e)
{
// some code here
}
i've added to the RadAjaxManager.AjaxSettings to the child account selector rows when they are created. i've seen that both the jscript and code behind script is being executed, but none of the behaviors (highlighting etc) are being displayed on the page after the AjaxRequest.
let me know of any insight or forum posts that may address this scenario.
thanks,
lon vinsel
lvinsel@nacsolution.com