How To
6 Apr 20181 minute to read
Render Rating from code behind
Rating can be rendered from the code behind by initializing the required properties in controller and passing those properties via ViewData or Model to the client side
The following code illustrates the rendering of Rating using Rating properties from code behind.
@{Html.EJ().Rating("univRating", Model).Render();}
public ActionResult Index()
{
RatingProperties Obj = new RatingProperties();
Obj.Value = 4;
Obj.Orientation = Syncfusion.JavaScript.Orientation.Vertical;
return View(Obj);
}