DateTime Format Issue
Re: DateTime Format Issue
I do however have a new question, it is possible to pass base64encode data via JSON and have it populate an image component? I set the column to be a string and link the image component to the image column
EDIT:
Seems to work fine in the designer, still not showing my picture data on the web, might be on my end though, will see what I find.
The designer had some odd behavior though when adding an image component to the canvas. It makes it impossible to close the current file and leaves a "spinny wheel" in the designers status bar at the bottom. This is on a Mac btw.
EDIT:
Seems to work fine in the designer, still not showing my picture data on the web, might be on my end though, will see what I find.
The designer had some odd behavior though when adding an image component to the canvas. It makes it impossible to close the current file and leaves a "spinny wheel" in the designers status bar at the bottom. This is on a Mac btw.
Re: DateTime Format Issue
Hello.
Could you specify how do you show the report in the Viewer?
Could you send us a small sample?
Thank you.
Could you specify how do you show the report in the Viewer?
Could you send us a small sample?
Thank you.
Re: DateTime Format Issue
Not certain why but just on this particular mac I'm on every so often has to have the cache cleared in Chrome otherwise I never see changes, everything seems to be working as it should at this point.
I did have a few vanity questions.
1)Is it possible to turn the "Open" button of on the toolbar in the viewer.
2)Is it possible to access the underlying functions for buttons such as print and export to PDF so that if needed we could provide them to another toolbar for seamless integration into existing web apps?
EDIT:
Additional Question just to save time, how would one do a regex expression for a cell? Similar to like jQuery would be ...text.replace(/(\d{2})(\d{7})/, "$1-$2")
This would format a string to 00-0000000 from 000000000 for instance.
I did have a few vanity questions.
1)Is it possible to turn the "Open" button of on the toolbar in the viewer.
2)Is it possible to access the underlying functions for buttons such as print and export to PDF so that if needed we could provide them to another toolbar for seamless integration into existing web apps?
EDIT:
Additional Question just to save time, how would one do a regex expression for a cell? Similar to like jQuery would be ...text.replace(/(\d{2})(\d{7})/, "$1-$2")
This would format a string to 00-0000000 from 000000000 for instance.
Re: DateTime Format Issue
Hello.
Sorry, maybe we don't understand your question. Could you describe your question more detailed? Do you need to hide the button?
You could use Print() or Export methods to do this.
You could use the Text Format property to format the text. Or you could use the Custom user functions.
Thank you.
Code: Select all
1)Is it possible to turn the "Open" button of on the toolbar in the viewer.
Code: Select all
2)Is it possible to access the underlying functions for buttons such as print and export to PDF so that if needed we could provide them to another toolbar for seamless integration into existing web apps?
Code: Select all
Additional Question just to save time, how would one do a regex expression for a cell? Similar to like jQuery would be ...text.replace(/(\d{2})(\d{7})/, "$1-$2")
This would format a string to 00-0000000 from 000000000 for instance.
Thank you.
Re: DateTime Format Issue
1. Hiding the Open button on the toolbar similar to this:
options.toolbar.showDesignButton = false;
options.toolbar.showAboutButton = false;
options.toolbar.showFullScreenButton = false;
options.toolbar.showBookmarksButton = false;
options.toolbar.showParametersButton = false;
options.toolbar.showZoomButton = false;
options.toolbar.showViewModeButton = false;
Reference Link: https://www.stimulsoft.com/en/documenta ... oolbar.htm
2. I was more curious about how to do that Print with Preview as well as Exporting to Excel since those two aren't covered in the documentation unless I missed it.
3. I figured out this via Custom Text Format of "##-#######"
options.toolbar.showDesignButton = false;
options.toolbar.showAboutButton = false;
options.toolbar.showFullScreenButton = false;
options.toolbar.showBookmarksButton = false;
options.toolbar.showParametersButton = false;
options.toolbar.showZoomButton = false;
options.toolbar.showViewModeButton = false;
Reference Link: https://www.stimulsoft.com/en/documenta ... oolbar.htm
2. I was more curious about how to do that Print with Preview as well as Exporting to Excel since those two aren't covered in the documentation unless I missed it.
3. I figured out this via Custom Text Format of "##-#######"
Re: DateTime Format Issue
Hello.
1. You could use next option to hide the Open button in the Viewer:
options.toolbar.showOpenButton = false;
2. There are some different methods of printing in the Viewer, but there is one way for printing by code. You could find it here https://www.stimulsoft.com/en/documenta ... inting.htm
Also you could find description of the Export methods here https://www.stimulsoft.com/en/documenta ... report.htm.
3. Great! You could use the Text Format for this.
Thank you.
1. You could use next option to hide the Open button in the Viewer:
options.toolbar.showOpenButton = false;
2. There are some different methods of printing in the Viewer, but there is one way for printing by code. You could find it here https://www.stimulsoft.com/en/documenta ... inting.htm
Also you could find description of the Export methods here https://www.stimulsoft.com/en/documenta ... report.htm.
3. Great! You could use the Text Format for this.
Thank you.
Re: DateTime Format Issue
#1 works, cheers to that one.
#2 will check out in the coming days
#2 will check out in the coming days
Re: DateTime Format Issue
Hello.
We are waiting for your results.
Let us know if you need our help.
Thank you.
We are waiting for your results.
Let us know if you need our help.
Thank you.
Re: DateTime Format Issue
I've been out for a few weeks and just tried the export options, seems satisfactory to me.
I don't suppose there is a means of doing the Next Page, Last Page, First Page, Previous Page iterations outside of the viewer's own toolbar is there?
I don't suppose there is a means of doing the Next Page, Last Page, First Page, Previous Page iterations outside of the viewer's own toolbar is there?
Re: DateTime Format Issue
Hello.
If we understand you right, you need to add the Next Page, Last Page, First Page, Previous Page buttons on your toolbar, you could use next code:
Thank you.
If we understand you right, you need to add the Next Page, Last Page, First Page, Previous Page buttons on your toolbar, you could use next code:
Code: Select all
viewer.jsObject.postAction("FirstPage");
viewer.jsObject.postAction("PrevPage");
viewer.jsObject.postAction("NextPage");
viewer.jsObject.postAction("LastPage");