BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
@(Html.EJ().Grid<object>("Grid") ... .Query("new ej.Query().addParams('empID',2)") // addding extra paramater using 'addParams' ) |
@(Html.EJ().Grid<object>("Grid") //New Grid @(Html.Syncfusion().Grid<Order>( //Classic Grid |
Also please confirm whether you using Classic Grid or new Grid. Please refer the following code snippets to find the difference between classic Grid and new Grid Control.
@(Html.EJ().Grid<object>("Grid") //New Grid @(Html.Syncfusion().Grid( //Classic Grid |
@{ int AtdId = 2; } @(Html.EJ().Grid<object>("Grid") .Query("new ej.Query().addParams('empID',"+AtdId+")") ... ) |