This question is locked. New answers and comments are not allowed.
Hi All,
I'm using the telerik grid where I need to display the dynamically rendered Image in Detail View of the Row.
I'm using the Ajax Binding and using Client Side event "OnDetailViewExpand" I'm rendering the image from the server and it's working fine.
As per mvc documentation, even I use the Ajax binding the first time grid uses the Server Binding so for the first time rendering I have to use the .Template instead of ClientTemplate.
I manage to configure both working together fine. I'm using the RenderAction in the Server binding scenario where my action returns the rendered image.
The only problem I have got is that I'm displaying 100 records per page so the first time it loads, It has to render all the images means the load time is very slow (18 seconds). I even don't need to render all the images as the user might not click all of the records to expand and preview.
My question is How can I render the Image (for that specific row) from Server side when the User click on Expand button. Is there any handler for "OnDetailViewExpand" on Server Side?
Thanks in advance.
I'm using the telerik grid where I need to display the dynamically rendered Image in Detail View of the Row.
I'm using the Ajax Binding and using Client Side event "OnDetailViewExpand" I'm rendering the image from the server and it's working fine.
As per mvc documentation, even I use the Ajax binding the first time grid uses the Server Binding so for the first time rendering I have to use the .Template instead of ClientTemplate.
I manage to configure both working together fine. I'm using the RenderAction in the Server binding scenario where my action returns the rendered image.
The only problem I have got is that I'm displaying 100 records per page so the first time it loads, It has to render all the images means the load time is very slow (18 seconds). I even don't need to render all the images as the user might not click all of the records to expand and preview.
My question is How can I render the Image (for that specific row) from Server side when the User click on Expand button. Is there any handler for "OnDetailViewExpand" on Server Side?
Thanks in advance.