Hi!
I have a grid which loads like this:
@(Html.EJ().Grid<object>("ResourcesGrid" + i)
.Datasource(ds => ds.URL(Url.Action("CustomResourcesDataSource", "Resource", new {requestSource = "home", resTypeId = Model[i].Id})).Adaptor(AdaptorType.UrlAdaptor))
See, behind the scenes, in that CustomResourcesDataSource I am sending some values that are loaded (in document ready) from sessionStorage.
problem is that grid seems to be loading BEFORE those variables are initialized from sessionStorage (doc ready)
what are my options here?