Are there special server controls for MVC in infragistics ?
I only found the general ASP.Net Controls, which cannot be used in Razor Views.
The infragistics jQuery controls are client related controls, I think.
Thanks !
Hello,
You can use the jQuery controls in MVC as there are wrappers around the controls to make it easy to use them in MVC. You can see examples in the samples browser:
http://samples.infragistics.com/jquery/grid/cell-selection
If you look at the sample in the source code view and look at CellSelection.cshtml you will see how to use the grid in an MVC application.
Let me know if you have any questions with this matter.
Thank you.
But can you tell me, if these controls are server controls or if they are client related (because java script / jquery usually is executed on the client). I'm not sure about that.
My opinion is, that client related controls are more critical concerning performance.
Perhaps server control are better for performance issues.
Tsvetelina addressed your questions in her post here.
thank you.
however, i need a grid which has all the functions like the infragistics win forms ultragrid.
(e.g. filtering / editing / scrolling).
I tried copying the samples grid code to my test project,
however I use vbhtml / razor and I'm not sure which jquery files and references should be included.
Maybe, you have a standalone mvc project with grid functionality in vbhtml.
Thanks.
The controls themselves are still the jQuery controls and they will do processing on the client. As far as performance, even a server control will have client side code for interaction with the control and features. What specifically is your concerns around performance?
For the jQuery grid, you may want to look at the following two samples that demonstrate virtualization to see if this meets your needs: