DataGrid Data Export (CSV, Excel, PDF, Word) #5142
Answered
by
sbwalker
Sharafudeen
asked this question in
General
-
Hi, For exporting data from a datagrid (CSV, Excel, PDF, Word), how can I call the Oqtane module controller action or API ? |
Beta Was this translation helpful? Give feedback.
Answered by
sbwalker
Mar 6, 2025
Replies: 1 comment 8 replies
-
@Sharafudeen if you create a module using the standard default template approach (ie. Module Management / Create Module ) then you will notice a Services folder in the Client project. The folder contains classes for interacting with your back-end API using HttpClient. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Sharafudeen modules which are scaffolded using the default module template use a "dual service" approach, which allows them to adapt to various run-time configurations:
So if your module is using Static Blazor or it is using Interactive Blazor with Server Interactivity, then the module is running on the server and does not need to call the API Controller (an API Controller is only necessary in a true client/server environment where the client application needs to communicate with the backend API over HTTP - ie. WebAssembly or .NET MAUI)