Hi Support:
I defined the ej-grid as follows:
<ej-grid id="grid"
allow-paging="true"
template-refresh="refreshTemplate" action-complete="complete" action-begin="begin" >
<e-datamanager url="/Home/DataSource" adaptor="UrlAdaptor"></e-datamanager>
<e-columns>
....
</e-columns>
</ej-grid>
Then the script is:
function begin(args)
{
args.model.query.addParams("age", 30);
}
The DataSource action method is invoked but the age parameter is 0.
What could be missing here.
Thanks in advanced
David