how to achive drag and drop functionality extjs 4.0.2a - extjs4

forum member I am using ext js4.0.2a and has achieved a task to show desktop with icons on it, when the application runs.
Now I want to add the drag and drop functionality to my desktop icons, but don't know how to achieve it.
I am using ext js 4.0.2a with MVC architechture so, is there any way I can achieve it. I had seen some examples, but they all based on version lower than ext js-4.
Please guide me how can I achieve this task of adding drag and drop functionality to my desktop using ext js 4.0.2a

There is a Drag and Drop guide http://docs.sencha.com/ext-js/4-0/#!/guide/drag_and_drop
and several examples for 4.0.7 which is compatible with your version, plus a few bug fixes.
http://docs.sencha.com/ext-js/4-0/#!/example/dd/dnd_grid_to_grid.html
Hope this info helps.

Related

How to attach 'enhanced image' plugin within ckedior5?

here I've successfully used ckeditor in my project. But I need to use ckeditor: enhanced-image (image2) which is not provided in their built. So I need to create a custom built to achieve my target. I'm trying a lot to figure out this but I can not achieve my goal.
Please help me to create a ckeditor with 'enhanced-image' plugin. Thanks in advance
The Enhanced Image plugin is dedicated to CKEditor 4 only and there is no way to run it in CKEditor 5 (and there won't be; v4 and v5 features are not interchangeable).
As of yet, there's no CKEditor 5 plugin that would provide the exact editing experience. You can check out some discussions about setting image dimensions and the image resizer feature we plan to release to learn more, though.

How to create custom popup in Xamarin.Forms

I want to create a custom popup like screencast.
Take a look on Rg.Plugins.Popup. It is quite popular open source project which you can use as a reference to learn.
P.S.: Please get familiar with https://stackoverflow.com/help/how-to-ask

How To Do A Popup Context Menu Like DroneDeploys

How can I include a popup context menu in my app, just like the ones DroneDeploy use?
What's the CSS, JS lib that you use???
I know how to do this using vanilla JavaScript, but I want it to look like yours, to keep the theme in tact!
I've looked at the source and can see you are using Angular CDK's OverlayModule to provide popups.
I'm not using Angular, so I'll have to just style the popup so it looks like you themes myself.
The doc is the best way to follow up in this case. There you can see what's possible or not. Did you see this point? Here you can follow a checklist to apply in your App and build App in Drone Deploy style. You'll need to follow another way to interact with users.

How to develop a webapp which allows the user to add markup to text files?

I need to develop a simple webapp that allows the user to highlight a couple of words in the file (text or HTML) that he can load from the screen, and then right-click and have some options show up to choose from.
When she chooses the option , the text of it is added to the file shown on the screen,right after the highlighted text, inside some parenthesis or similar.
Is Ruby on Rails a suitable platform for developing such an app?
Is Grails more suitable ?
(Assuming similar level of knowledge in Groovy and Ruby)
In both cases, I'd appreciate pointers to gems/libraries I should be looking into for these tasks.
Thanks!
I'm not 100% sure I understand your requirements, but have you considered integrating a WYSIWYG (what-you-see-is-what-you-get) editor into your web app? Something like CKeditor is open-source, and effective.
You could load the file into the editor and setup a custom context menu like described in part 6 of this tutorial. So when the user right clicks in the editor, the custom context menu item could be configured to facilitate the insertion you are looking to accomplish.
I agree with corroded's advice to choose a language/framework you know and can work better in, as you'll be able to achieve your desired functionality through a variety of languages/frameworks.
Best of Luck!
Find a language/framework you know and can work better in. Also, you're gonna need some javascript magicks so I suggest using jquery. Here's a link on how to do your right click action: How to distinguish between left and right mouse click with jQuery
I think the function you describe is more about client user-friendliness than server processing. I think it's can only be done with javascript/jQuery or similar tools.
Same as tmarsden, I think a good way to do that is integrating a WYSIWYG free editor. I have done it before with TinyMCE, by writing a custom plugin for this tool. If you choose using Grails as server technology, you can take a look at TinyMCE plugin for Grails.

How can i design menu and title in vb.net?

I Would like to create my menu groups in my desktop application as the one shown in sample image. I would like to know which control is used for it? What extra works we need to do on it?
A reference to similar one is also welcome...
Thanks
CollapsiblePanel or Accordian or TaskPane.
Check out .Net 2.0 SDK Samples, specifically Technologies\WinForms\TaskPane.