03 Jan, 2011

Drupal drag and drop module

Articles related to drupal drag and drop module

Drag 'n Drop Files from explorer to VB

http://digitalpbk.blogspot.com/2006/12/drag-n-drop-files-from-explorer-to-vb.html Drag 'n Drop Files from explorer to VB IntroductionThis piece of code allows to make programs in Visual Basic 6, to have a drag and drop support of files directly from the folders. This is an alternative to the old File Open mechanism. This is way cooler...Code tested on Windows XP and on Visual Basic 6. Any information about other versions of windows or vb? Leave a comment...DownloadDownload the code from planet source code.The CodeThe main part of the code is the module, here ...
Published 5 years, 1 month ago

Showing similar content nodes on Drupal

http://digitalpbk.com/2009/12/showing-similar-content-nodes-drupal Showing similar content nodes on Drupal To show similar content nodes on drupal you have to install the similar module. After installing the similar module goto admin/build/block Drag the Similar Entries module OR If you want to integrate the similar content to the node body, call the similar_content theme function. print theme('similar_content', $node); on node.tpl.php Using the variables available withing node.tpl.php you can choose whether to display the similar content ...
Published 2 years, 2 months ago

JQuery make dynamic draggable and droppable containers

http://digitalpbk.com/jquery/drag-drop-make-dynamic-draggable-and-droppable-containers JQuery make dynamic draggable and droppable containers The jquery UI javascript has the Draggable and Droppable Interactions inorder to implement a drag drop UI. By default draggable and droppable containers are marked draggable and droppable by jQuery when the page loades, As shown in the code snippet below for the jQuery Drag code and jQuery Drop Code, jQuery Drop Code using jQuery droppable $(".dropTarget").droppable({ drop: function(event, ui) { // Drop Logic ...
Published 1 year, 11 months ago

Welcome to digitalpbk.com

http://digitalpbk.com/2009/10/other-welcome-digitalpbkcom Welcome to digitalpbk.com Well just to have something to get started. :) This is my experiment with drupal. I got somehow drupal to run, figured out and tinkered it as far as I know. I am a drupal 5 developer, has written a few modules in it, for the company SmartCrowds for which I work for. Drupal 6 is a little bit different. So if you find it a little plain and have ideas to improve, help me out. Just Ignore the above, its pretty old and historically true, But now it runs on Django ...
Published 2 years, 3 months ago

Downloading Photos from Orkut Album

http://digitalpbk.blogspot.com/2008/11/orkut-download-photo-album-copy.html Downloading Photos from Orkut Album Photo Download?Orkut has done a good job in "trying" to prevent downloads from orkut photo albums. They have blocked right clicking. But using Firefox we can still download the photo (ie If you can see the photo, you can download)Drag drop the photo to the URL (Address Bar) and then save the page.(works for both IE and Firefox)-OR-These are the steps for Firefox alone: Browse to the appropriate Photo / AlbumNow select Tools > Page Info ...
Published 3 years, 2 months ago

Remove Flash Tracking on AddThis module on Drupal 5

http://digitalpbk.com/drupal/remove-flash-tracking-addthis-module-drupal-5 Remove Flash Tracking on AddThis module on Drupal 5 If you use AddThis module on drupal, you might have noticed that a 1px by 1px flash object is created which sets tracking cookies on your pages. This is transparent to the user most time and you will see it only under generated source view. The flash button is added dynamically by the addThis module on the top of the page. This sometimes can be annoying since a white bar can appear at the top of the page due to this. In drupal 6, the flash ...
Published 2 years, 3 months ago

How to Integrate another Website to Google Analytics Tracking and Adsense

http://digitalpbk.com/adsense-analytics/how-integrate-google-analytics-tracking-and-adsense How to Integrate another Website to Google Analytics Tracking and Adsense .tpl.php, Alternatively you can install the Google Analytics module from drupal, and goto admin/settings/googleanalytics choose advanced settings and check the Track Adsense Ads option. :) Drupal Google Analytics How to ...
Published 2 years, 2 months ago

List of Publically accessible drupal sites you can play around with

http://digitalpbk.com/2009/12/list-publically-accessible-drupal-sites-you-can-play-around List of Publically accessible drupal sites you can play around with Here's a list of sites for drupal developers to play around with. HTML Comments without moderation www.themallblog.com www.eatsleepandcode.com www.layt.net Anonymous node editing mature-ip.eu/node/115/edit drupal.kldp.net (Its all Korean I dont know what all is possible) drupal.x73.ch proves2.iws.es/drupal emusic.mozdev.org/drupal www.news7newslinc.net futuregrid.org www.aidsvancouver.org jennycrumiller ...
Published 2 years, 1 month ago

How to change root admin user password in Drupal ?

http://digitalpbk.com/drupal/how-change-drupal-root-user-password How to change root admin user password in Drupal ? In order to reset the root or superadmin password on a drupal system, login into the database by looking at the settings.php. You can use phpMyAdmin or any other MySQL utilities like SQLYog, or MySQL command line. Run the following query to reset the password. UPDATE users SET pass = MD5('password') WHERE uid = 1 The user id of administrator is always 1. Password field in drupal is stored as MD5 of the actual string password. So ...
Published 1 year, 10 months ago

Detect in form_alter if the node submitted is added or edited

http://digitalpbk.com/drupal/detect-drupal-form-add-edit-created-formalter Detect in form_alter if the node submitted is added or edited When you want to alter a form on Drupal, it is useful to detect if the form being submitted is to add a new node or edit an existing node. To detect if a form is being added or submitted, check the $form[]['nid']['#value']. Example : $form['book']['nid']['#value']. If the value is "new", the node is being added. If the value is numeric, the node with nid as the number is being ...
Published 2 years, 1 month ago

Related help topics for drupal drag and drop module More keywords like drupal drag and drop module
More pages for drupal drag and drop module


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
A Crab Hole A Crab Hole in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk