i want to select file from CKeditor from browse server button - ckeditor

I have browae server button
I am working in asp.net c#.
I want to select image from my imagefolder
it means when i click on Browse Server button, my imagefolder must open and when i click any of the image. it must be selected and selected image path mustbe copied on url textbox..
regards.

If I understood correctly your question, basically you need two things:
make sure that the filebrowser plugin is available in your CKEditor package - this plugin makes it possible to attach external file managers to CKEditor
...and you need some file manager.
There is an official ajax file manager for CKEditor created by CKSource and it is called CKFinder. If you decide to give it a try make sure to check the documentation

Related

How to use url image inserting dialog instead of upload in CKEditor 5 Classic

I want to use CKEditor 5, insert image with URL dialog, instead of its default file upload dialog. how to do this in CKEditor 5 Classic?
There is, as far as I know, no such feature officially provided.
There is, however, a tutorial provided in the documentation on how to write such a feature: https://ckeditor.com/docs/ckeditor5/latest/framework/guides/creating-simple-plugin.html
There is also a separate project on github for the same purpose, which appears to be a bit more stylish: https://github.com/khanhna/ckeditor5-image-via-url
Both approaches require to configure a modified build, and both appear to lack an important component: a button in the image's toolbar to edit that URL later on.
So, a more simple approach that does achieve practically the same is to just drag the images into the editor from some browser window.

selecting multiple files in CKFinder 3 integrated on CKEditor

I'm using CKFinder 3 integration with CKEditor. Now, I want to select multiple files on the CKFinder window and want them to get added on the CKEditor link dialog.
Currently, even if I'm selecting multiple files, only one file is getting added.
Can anyone know how to achieve this functionality?
First problem is the CKFinder which by default sends only a single URL to the CKEditor. You would need to try changing this behavior using below two events:
https://docs.ckeditor.com/ckfinder/ckfinder3/#!/api/CKFinder.Application-event-files_choose
https://docs.ckeditor.com/ckfinder/ckfinder3/#!/api/CKFinder.Application-event-file_choose_resizedImage
Another problem is CKEditor. Whenever you select an image or a file in CKFinder a corresponding link (anchor tag) or image (img tag) is being created and inserted into CKEditor. Both link and image plugins support single insertion so you would need to write new plugins which insert multiple links and images.
This is a lot of custom coding.

CKEDITOR Image Properties Browse Button

I have found a neat plugin for CKEDITOR called bgimage that allows a user to select a section of text and wrap said text within div and apply the background image style attribute (Background Image plugin should use Selected Text.).
I was wondering how can I replace the Image URL with Image Browse button as found within Image Properties?
Do I need to add an additional button to the vbox then make the necessary connections between FileBrowser and the associated Button? (I can't seem to find the relevant Developer Docs, regarding this problem).
The complete documentation for adding the file browser to your dialog is actually available here: Adding File Manager to a Dialog Window.

I wish to add a button on the admin dashboard in Joomla 3.5, where in code do I need to make changes?

This button would be 'share' and placed at the article editor just like we have buttons like 'save','edit' etc
I facing a problem understanding joomla code structure and which file I need to make changes so as to add this button. Should it be administrator/layout/editor/ ?
There is a free plugin that can help you share your contents in social network. have a look http://extensions.joomla.org/extensions/extension/social-web/social-comments/social-comments-and-sharing-for-joomla .
Also there are several other plugins that may suit your requirements then to hack the core files http://extensions.joomla.org/extensions/extension?searchall=share+button
if you want to develop your custom editor button then you can check this link
Add Custom Button to Joomla's Article Editor (TinyMCE)

app inventor webviewer can't upload files from a html form

I have made a html/php form that allows me to upload files. And when I open it in my pc browser works perfectly. It also works when I open this website wiht my mobile's browser and when I click on select file I can chose which app I want to use to get the file I want to upload.
But when I open this website with webviewer from my app, When I click the button to upload the sound, nothing happens. The whole line is selected and clicking the button does nothing.
Thanks for your help.
The webviewer is no full browser, this does not work therefore.
But you can use the activity starter instead, see the documentation about Using the Activity Starter
Open the browser to a Web page
Use these activity starter properties
to open a specific web page:
Action: android.intent.action.VIEW
DataUri: http://news.google.com
Alternatively use the web component together with the PostFile block, see an example here

Resources