Hello,

I TreePanel and clicking the leaf, I need to spend NODEID STORE in order to update the GridPanel, TreePanel my calls Treepanel1, below is the code I'm trying to use the passing Parameters to be able to use the controller in NODEID "CarregaDados". I'm not getting.


.Proxy(Html.X().AjaxProxy()
.Url(Url.Action("CarregaDados"))
.Reader(Html.X().JsonReader().Root("data"))
)
.Parameters(ps =>
ps.Add(new StoreParameter("id", "#{TreePanel1}.getSelectionModel().id", ParameterMode.Raw))
);

public StoreResult CarregaDados( string id)
{
}