• Thomas Milas
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 4
    Replies

I decided I'd like to use Outbound Messaging for my outgoing integration efforts. I'm looking for a solution that I can setup on a webserver and access a legacy Firebird DB. I'm not looking to work with one of those expensive partners. Where is the best place to start? I'd prefer a java setup.

 

I'm looking at this:

 

http://wiki.developerforce.com/page/Creating_an_Outbound_Messaging_Notification_Service_with_Eclipse_3.2

 

 

 

 

I'm trying to toubleshoot my issues with drag and drop and the jQuery seems to work when the no conflict is like this and showHeader is true.

$ = jQuery.noConflict();

 If I use:

 

j$ = jQuery.noConflict();

 Like it's listed in: http://wiki.developerforce.com/page/Developing_Apps_with_jQuery

 

What would cause this? I'm using code from the jQuery Site below:

 

<apex:page showHeader="true">
  
  <title>jQuery UI Droppable - Default functionality</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  <apex:includeScript value="http://code.jquery.com/jquery-1.9.1.js"  />
  <apex:includeScript value="http://code.jquery.com/ui/1.10.3/jquery-ui.js"  />
  <link rel="stylesheet" href="/resources/demos/style.css" />
  <style>
  #draggable { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
  #droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; }
  </style>
  <script>
    $ = jQuery.noConflict();
      $(function() {
    $( "#draggable" ).draggable();
    $( "#droppable" ).droppable({
      drop: function( event, ui ) {
        $( this )
          .addClass( "ui-state-highlight" )
          .find( "p" )
            .html( "Dropped!" );
            alert("Dropped");
      }
    });
  });
  </script>

<div id="draggable" class="ui-widget-content">
  <p>Drag me to my target</p>
</div>
 
<div id="droppable" class="ui-widget-header">
  <p>Drop here</p>
</div>
 
 


</apex:page>

 

I'm trying to implement drag and drop via JQuery from a DataTable or Page block Table.

 

I can make the hole table drag but can't get the specific rows to drag. What can I do to get the individual records to drag from the list?

 

I want to assign records to a parent record.

 

Thanks,

Tom

Hi All,

 

I've got a requirement to build a page that has mutiple objects lists on it. I'd like to be. Object B has a lookup relationship to Object A. I'd like to beable to associate any Record in Object List B to Any Record in Object List A. 

 

It has been requested that this is done with Drag and drop. From what I gather this cannot be done with Apex. It has to be done with either Javascript/JQuery Remoting or Flex. 

 

I need some direction on what is the best practice way to do this and the easiest way to implement. I saw a few comments liking flex quite a bit. Is this the best route to take?

 

What suggestions to you have?

 

Thanks in advance.

I'm trying to setup a visual force page. it will have mutiple different blocks on the page that will summarize what is going on in different areas of the app. We don't want it to be one of these pages I ahve to scroll for miles so there will be a 3 blocks on the left and 3 blocks on the right.

 

What's the best method to accomplish this?

 

Should I have a main page that lays out the blocks and then Visual force pages embedded into the different blocks?

 

How can I display a list of items in an object and it's related list. For instance. Ob1 is the main object and rel1 is it's related list.

 

Ob1 - 001

     Rel1 - 001

     Rel1 - 002

Ob1 - 002

Ob1-  003

     Rel1 - 003

     Rel1 - 004

     Rel1 - 005

 

I'd like links to them also.

 

Can you help?

 

 

I'm trying to toubleshoot my issues with drag and drop and the jQuery seems to work when the no conflict is like this and showHeader is true.

$ = jQuery.noConflict();

 If I use:

 

j$ = jQuery.noConflict();

 Like it's listed in: http://wiki.developerforce.com/page/Developing_Apps_with_jQuery

 

What would cause this? I'm using code from the jQuery Site below:

 

<apex:page showHeader="true">
  
  <title>jQuery UI Droppable - Default functionality</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  <apex:includeScript value="http://code.jquery.com/jquery-1.9.1.js"  />
  <apex:includeScript value="http://code.jquery.com/ui/1.10.3/jquery-ui.js"  />
  <link rel="stylesheet" href="/resources/demos/style.css" />
  <style>
  #draggable { width: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; }
  #droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; }
  </style>
  <script>
    $ = jQuery.noConflict();
      $(function() {
    $( "#draggable" ).draggable();
    $( "#droppable" ).droppable({
      drop: function( event, ui ) {
        $( this )
          .addClass( "ui-state-highlight" )
          .find( "p" )
            .html( "Dropped!" );
            alert("Dropped");
      }
    });
  });
  </script>

<div id="draggable" class="ui-widget-content">
  <p>Drag me to my target</p>
</div>
 
<div id="droppable" class="ui-widget-header">
  <p>Drop here</p>
</div>
 
 


</apex:page>

 

Hi All,

 

I've got a requirement to build a page that has mutiple objects lists on it. I'd like to be. Object B has a lookup relationship to Object A. I'd like to beable to associate any Record in Object List B to Any Record in Object List A. 

 

It has been requested that this is done with Drag and drop. From what I gather this cannot be done with Apex. It has to be done with either Javascript/JQuery Remoting or Flex. 

 

I need some direction on what is the best practice way to do this and the easiest way to implement. I saw a few comments liking flex quite a bit. Is this the best route to take?

 

What suggestions to you have?

 

Thanks in advance.

I'm trying to setup a visual force page. it will have mutiple different blocks on the page that will summarize what is going on in different areas of the app. We don't want it to be one of these pages I ahve to scroll for miles so there will be a 3 blocks on the left and 3 blocks on the right.

 

What's the best method to accomplish this?

 

Should I have a main page that lays out the blocks and then Visual force pages embedded into the different blocks?

 

How can I display a list of items in an object and it's related list. For instance. Ob1 is the main object and rel1 is it's related list.

 

Ob1 - 001

     Rel1 - 001

     Rel1 - 002

Ob1 - 002

Ob1-  003

     Rel1 - 003

     Rel1 - 004

     Rel1 - 005

 

I'd like links to them also.

 

Can you help?