Hi all,
I am passing some data back to AjaxRequest through e.Argument. I pass the data in as an array, it comes out as a comma separated list. Is there any way to maintain my object? I am working with a large set of data and it is confusing to have a huge list of CSVs not associated with any titles.
etc... would like to do arguments["Command Name"] == "Update Local Settings";
I am passing some data back to AjaxRequest through e.Argument. I pass the data in as an array, it comes out as a comma separated list. Is there any way to maintain my object? I am working with a large set of data and it is confusing to have a huge list of CSVs not associated with any titles.
protected void RadAjaxManager1_AjaxRequest(object sender, AjaxRequestEventArgs e){ //TODO: This needs extensive work still. Logger.InfoFormat("Received an ajax request. Arguments are: {0}", e.Argument); string[] arguments = e.Argument.Split(','); if (arguments[0] == "Update Local Settings") { string dockID = arguments[1]; Logger.InfoFormat("Dock ID: {0}", dockID); CormantRadDock dock = Utilities.FindControlRecursive(Page, dockID) as CormantRadDock;etc... would like to do arguments["Command Name"] == "Update Local Settings";