Standard html download contains an msSaveOrOpen capability. When exporting excel/pdf from KendoUI grid, the dialog is only save, then a 2nd dialog opens with "open save" etc.
How can I get the excel export to open using open/save buttons instead of just save?
This is a browser feature. You can change this in the advanced settings in Chrome.
Related
I use CKEDITOR and need to open Source Dialog only, without toolbar and button Source. I want to click button in separate place and show dialog to user. Searching in docs doesnt give any result. Can you suggest me something?
Looking for a very simple way to disable/remove the CKEditor "browse server" button when using the Link toolbar button without disabling the "browser server" button when using the Image toolbar button.
Why don't you go the other way round and just enable it only in the dialog windows where it's needed? There are dedicated configuration options for that, read more in the Adding File Manager Scripts for Selected Dialog Windows section of the documentation.
So, for example, to enable it just for the Image dialog window, use the config.filebrowserImageBrowseUrl and config.filebrowserImageUploadUrl properties, like in the example below:
CKEDITOR.replace( 'editor1', {
filebrowserImageBrowseUrl: '/browser/browse.php?type=Images',
filebrowserImageUploadUrl: '/uploader/upload.php?type=Images'
});
In Export Report dialogue box, we want to provide a new option "Choose XSLT" if user selects "Export Format" as XML.
How to customize this dialogue box?
This can be customized in a JSP page:
[birt app root]/webcontent/birt/pages/dialog/ExportReportDialogFragment.jsp
However the emitter probaly needs to be customized too to take this new input into consideration
According to my understanding if I need design MFC form with button I have only one possibility - write everything in code editor. There is no designer. Except cases when I need design dialog form. I can use designer and generate resources for dialogs. But in case normal Frame there is possibility to drop buttons in designer window. Is that truth?
If you want to use a form as a main window, create your project with a CFormView as a base class. You can select that inside the new project wizard. Then you get a dialog resource for that view. It works just like a dialog.
Go to Resource view
Create a new dialog template
Double click the dialog template name
Once the dialog opens, the toolbox get enabled
You can drag&drop the controls to the form now
In TyniMce when select the text and right click there is inser/edit Image option is there on click on that how can i open my own aspx page not TynyMce ImageEdit.html page.
You can crete your own contextmenu (and open it on right click) using an own plugin.
The tinymce contextmenu plugin should be worth a look at. If you want to develope your own contextmenu plugin have a look at the source code.