I'm using fullcalendar (https://fullcalendar.io/) on my web app and I'm trying to find out if there's some functionality to download the calendar for a month as a .CSV or XL file. Similar to table export on the bootstrap table?
I can't find anything on google or the documentation. Thanks for any help.
Related
I am unable to insert a video which is having table of contents and is capable of playing at required time frame and that particular video is supposed to be a part of adobe captivate project. The video is embedded in a html5 file. Adding a zip file of the html5 file along with xml etc. is unable to load in Adobe Captivate. Please if someone can help me proceed further.
You cannot insert HTML files, but you can insert a web object !
So you just have to publish your video on a server, to copy the link address where it is located on the internet and to insert this link in Adobe Captivate ( insert > objects > web).
Hope it will help you.
is there a way to create a chart for a website with asp.net? The workbook would be updated sometimes so it needs to update itself on a website. If yes, will I be able to add this file to my other HTML, css and JavaScript files?
If it is possible I would be grateful for providing a sample code.
I have googled too many links but all I get is to handle above requirement using report viewer at server side only.
I want some solution at my end only.
For ex: While creating\modifying rdlc file, would it be possible to restrict the export options ? Either using the report properties or writing custom code in report code section.
I have worked on rdl files & not rdlc's so don't have much idea about it.
I hope this question stands correctly under stack standards !
Thanks,
EDIT: This is not a possible duplicate questions because this question focusing on how to achieve the requirement in the report itself without making any changes in the configuration files at server. Other questions\answers focused on changes in the configuration files at server.
Thank you #alejandro zuleta.
We can write a visibility expression for the specific tables\object which is showing the data in the report. The data will be visible only when the report is viewed in application OR exported to PDF.
=IIF(Globals!RenderFormat.IsInteractive = "True", False, IIF(Globals!RenderFormat.Name = "PDF", False, True))
OR
We can suppress the export options other than PDF for all the SSRS reports (rdlc) available. For this, we need to add below jQuery code in the end of the </body> of SSRSReportViewer.aspx report viewer control.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("a[title='Word']").parent().hide();
$("a[title='Excel']").parent().hide(); });
</script>
It is not possible to restrict export options using report custom code or any report property. The closest thing you can do using report properties is hide report components based on the Globals!RenderFormat.IsInteractive built-in field.
However, you can customize Report Viewer web app to change the exporting options matching your needs. Report Viewer has several properties that let you modify things like Show export menu item.
REFERENCE
Also read this article where there is an example of PDF export customization.
Let me know if this helps.
Can anyone give me hint how can I grab all youtube videos from drupal7 node contents?
Actually I want to grab all youtube videos from node contents then that link I want to save in spreadsheet.
Create a view (and select your specific content type that has the Youtube videos embedded into it). If you are not using views module already, install Views module first so that you can create a view.
After that use either Views Excel Export module OR Views Data Export module to export the node bodies to excel sheets.
Note: This approach will give you entire content of the node bodies (not just the iframe code of the video) into the excel sheets. However, you can easily find the iframe codes within those excel sheets with simple ctrl+f.
Can someone point me to some code/tutorial on how to upload pdf files and store them, then moreover how to use a pdf reader to display the file as read only in an asp.net application.
Is there a PDF reader already in the visual studio toolbox?
The approach I would use in this situation is to upload the PDF as you would any other file, then use a tool like GhostScript to convert the PDF pages into image files that you can show in ASP .Net.
Here's a tutorial doing that in C# http://www.codeproject.com/KB/cs/GhostScriptUseWithCSharp.aspx
Adobe provides (on acrobat.com) a free service which provides you with the ability to upload pdf (and also other types like doc...) and then embed a nice flash interface for displaying the files on your page.
It's pretty helpful as you can store some 5 gigs of files here.
But if you want to let the users upload their own files then this won't help you.
PDF is a final format file, ie its is read-only for the most part and can be embedded into the page via the <object> tag, except if you mean downloadable by the user.
Displaying PDF is generally done by rasterising to an image format for display (ie as an image on the page or via a richer interface (with zooming etc) through flash/silverlight etc.
You can use [GhostScript][1] to interpret PDF files and convert them to an image.
[1]: http://www.GhostScript .com
Uploading a PDF is just like any other file. Use the ASP.NET file uploader control:
http://www.codeproject.com/KB/aspnet/fileupload.aspx
In order to view the PDF in an ASP.NET application, you could either depend on Acrobat being there or use a PDF Viewer control.
The company I work for, Atalasoft, sells a PDF Reader add-on to our web viewer controls. You can learn more here: http://www.atalasoft.com/products/dotimage/pdf-reader