[Proto-Scripty] Re: Prototype in salesforce development

2009-06-28 Thread T.J. Crowder

Now that's cool!  I didn't know about FirePHP and FirePython.  I've
added notes about them to the list of reources[1] on the unofficial
wiki.

[1] http://proto-scripty.wikidot.com/resources

Thanks Rick!

-- T.J. :-)

On Jun 27, 4:38 pm, Rick Waldron waldron.r...@gmail.com wrote:
 This is sort of redundant to TJ, but I'm going to throw it out there... I'm
 not familiar with salesforce development, but firebug has a number of
 add-ons that make life so much easier allowing you to debug your server side
 code right in firebug:

 http://getfirebug.com/extensions/index.html

 I use FirePHP and FirePython

 Rick

 On Sat, Jun 27, 2009 at 6:47 AM, T.J. Crowder t...@crowdersoftware.comwrote:



  Hi,

   one question, on Ajax.Updater(id, URL, optionStr), the second argument
   is it MUST be file or can we have controller action which return
   result ?

  It must be a URL (which is not necessarily a file, it depends on your
  server configuration).

  HTH,
  --
  T.J. Crowder
  tj / crowder software / com
  Independent Software Engineer, consulting services available

  On Jun 27, 11:16 am, Nakata Kokuyo alvincks...@gmail.com wrote:
   Thanks for guidance T.J ..

   one question, on Ajax.Updater(id, URL, optionStr), the second argument
   is it MUST be file or can we have controller action which return
   result ? Appreciated if you can show me some sample if possible ..

   On Jun 27, 3:56 pm, T.J. Crowder t...@crowdersoftware.com wrote:

Hi,

                 alert('call 2...');
                 new Ajax.updater(id, URL, optionStr);
                 alert('call 3...');

JavaScript is case sensitive, Ajax.updater and Ajax.Updater are not
the same thing.

Can I strongly recommend using some kind of debugger for catching
these things, like Firebug or the IE Dev toolbar, etc.  They would
have told you that Ajax.updater was undefined.  Some resources here
[1].

[1]http://proto-scripty.wikidot.com/resources

HTH,
--
T.J. Crowder
tj / crowder software / com
Independent Software Engineer, consulting services available

On Jun 27, 8:33 am, Nakata Kokuyo alvincks...@gmail.com wrote:

 Good day,

 I have a problem by running prototype in salesforce visualforce page,
 which i unable to understand and have some doubts

 Below code is intend to allow user to select drop down list and able
 to update div with value in drop down list.

 Below code only able to run and call out alert on Call 2..., it
  seem
 like ajax.updater is not calling, anyone have idea on this, what is
 wrong in my code?

 Thank you for your guidance in advance !

 Coding :
 [quote]
 apex:includeScript value={!$Resource.jsr_class}/
 apex:includeScript value={!$Resource.prototype}/
 apex:includeScript value={!$Resource.scriptaculous_builder}/

 function doTest()
         {

                 var tempStr = $F('j_id0:j_id3:prm_partnername_list');
                 alert(tempStr);

                 if(tempStr != '')
                 {
                         alert('call 1...');
                         updater('j_id0:j_id3:thePanel', '
 https://cs1.salesforce.com/apex/
 my_test?sfdc.tabName=01rS0004drs');

                 }
         }

         function updater(id, URL)
         {
                 var optionStr =
                 {
                         method : 'get',
                         onSuccess : function(){
                                 alert('calling success');
                         }
                 }

                 alert('call 2...');
                 new Ajax.updater(id, URL, optionStr);
                 alert('call 3...');
         }

         /script

 apex:form 

         table width=100% height=400 cellpadding=0
  cellspacing=0
 border=0 style=background: #F3F3EC
                 tr
                         td align=left valign=topnumber/td
                 /tr
                 tr
                 td
                                 apex:selectList
  id=prm_partnername_list  size=1
 onchange=doTest(); 
                                 apex:selectOptions
  value={!partnerNameList}/
                                 /apex:selectList

                 /td

                 /tr
         /table

 /apex:form
 [/quote]


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Prototype in salesforce development

2009-06-28 Thread Rick Waldron
Yeah dude... FirePHP is the new black! hahaha It's so nice to NEVER have to
output var_dump to the page...





On Sun, Jun 28, 2009 at 4:38 AM, T.J. Crowder t...@crowdersoftware.comwrote:


 Now that's cool!  I didn't know about FirePHP and FirePython.  I've
 added notes about them to the list of reources[1] on the unofficial
 wiki.

 [1] http://proto-scripty.wikidot.com/resources

 Thanks Rick!

 -- T.J. :-)

 On Jun 27, 4:38 pm, Rick Waldron waldron.r...@gmail.com wrote:
  This is sort of redundant to TJ, but I'm going to throw it out there...
 I'm
  not familiar with salesforce development, but firebug has a number of
  add-ons that make life so much easier allowing you to debug your server
 side
  code right in firebug:
 
  http://getfirebug.com/extensions/index.html
 
  I use FirePHP and FirePython
 
  Rick
 
  On Sat, Jun 27, 2009 at 6:47 AM, T.J. Crowder t...@crowdersoftware.com
 wrote:
 
 
 
   Hi,
 
one question, on Ajax.Updater(id, URL, optionStr), the second
 argument
is it MUST be file or can we have controller action which return
result ?
 
   It must be a URL (which is not necessarily a file, it depends on your
   server configuration).
 
   HTH,
   --
   T.J. Crowder
   tj / crowder software / com
   Independent Software Engineer, consulting services available
 
   On Jun 27, 11:16 am, Nakata Kokuyo alvincks...@gmail.com wrote:
Thanks for guidance T.J ..
 
one question, on Ajax.Updater(id, URL, optionStr), the second
 argument
is it MUST be file or can we have controller action which return
result ? Appreciated if you can show me some sample if possible ..
 
On Jun 27, 3:56 pm, T.J. Crowder t...@crowdersoftware.com wrote:
 
 Hi,
 
  alert('call 2...');
  new Ajax.updater(id, URL, optionStr);
  alert('call 3...');
 
 JavaScript is case sensitive, Ajax.updater and Ajax.Updater are not
 the same thing.
 
 Can I strongly recommend using some kind of debugger for catching
 these things, like Firebug or the IE Dev toolbar, etc.  They would
 have told you that Ajax.updater was undefined.  Some resources here
 [1].
 
 [1]http://proto-scripty.wikidot.com/resources
 
 HTH,
 --
 T.J. Crowder
 tj / crowder software / com
 Independent Software Engineer, consulting services available
 
 On Jun 27, 8:33 am, Nakata Kokuyo alvincks...@gmail.com wrote:
 
  Good day,
 
  I have a problem by running prototype in salesforce visualforce
 page,
  which i unable to understand and have some doubts
 
  Below code is intend to allow user to select drop down list and
 able
  to update div with value in drop down list.
 
  Below code only able to run and call out alert on Call 2..., it
   seem
  like ajax.updater is not calling, anyone have idea on this, what
 is
  wrong in my code?
 
  Thank you for your guidance in advance !
 
  Coding :
  [quote]
  apex:includeScript value={!$Resource.jsr_class}/
  apex:includeScript value={!$Resource.prototype}/
  apex:includeScript value={!$Resource.scriptaculous_builder}/
 
  function doTest()
  {
 
  var tempStr =
 $F('j_id0:j_id3:prm_partnername_list');
  alert(tempStr);
 
  if(tempStr != '')
  {
  alert('call 1...');
  updater('j_id0:j_id3:thePanel', '
  https://cs1.salesforce.com/apex/
  my_test?sfdc.tabName=01rS0004drs');
 
  }
  }
 
  function updater(id, URL)
  {
  var optionStr =
  {
  method : 'get',
  onSuccess : function(){
  alert('calling success');
  }
  }
 
  alert('call 2...');
  new Ajax.updater(id, URL, optionStr);
  alert('call 3...');
  }
 
  /script
 
  apex:form 
 
  table width=100% height=400 cellpadding=0
   cellspacing=0
  border=0 style=background: #F3F3EC
  tr
  td align=left valign=topnumber/td
  /tr
  tr
  td
  apex:selectList
   id=prm_partnername_list  size=1
  onchange=doTest(); 
  apex:selectOptions
   value={!partnerNameList}/
  /apex:selectList
 
  /td
 
  /tr
  /table
 
  /apex:form
  [/quote]
 
 
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to 

[Proto-Scripty] Re: Prototype in salesforce development

2009-06-27 Thread T.J. Crowder

Hi,

 alert('call 2...');
 new Ajax.updater(id, URL, optionStr);
 alert('call 3...');

JavaScript is case sensitive, Ajax.updater and Ajax.Updater are not
the same thing.

Can I strongly recommend using some kind of debugger for catching
these things, like Firebug or the IE Dev toolbar, etc.  They would
have told you that Ajax.updater was undefined.  Some resources here
[1].

[1] http://proto-scripty.wikidot.com/resources

HTH,
--
T.J. Crowder
tj / crowder software / com
Independent Software Engineer, consulting services available



On Jun 27, 8:33 am, Nakata Kokuyo alvincks...@gmail.com wrote:
 Good day,

 I have a problem by running prototype in salesforce visualforce page,
 which i unable to understand and have some doubts

 Below code is intend to allow user to select drop down list and able
 to update div with value in drop down list.

 Below code only able to run and call out alert on Call 2..., it seem
 like ajax.updater is not calling, anyone have idea on this, what is
 wrong in my code?

 Thank you for your guidance in advance !

 Coding :
 [quote]
 apex:includeScript value={!$Resource.jsr_class}/
 apex:includeScript value={!$Resource.prototype}/
 apex:includeScript value={!$Resource.scriptaculous_builder}/

 function doTest()
         {

                 var tempStr = $F('j_id0:j_id3:prm_partnername_list');
                 alert(tempStr);

                 if(tempStr != '')
                 {
                         alert('call 1...');
                         updater('j_id0:j_id3:thePanel', 
 'https://cs1.salesforce.com/apex/
 my_test?sfdc.tabName=01rS0004drs');

                 }
         }

         function updater(id, URL)
         {
                 var optionStr =
                 {
                         method : 'get',
                         onSuccess : function(){
                                 alert('calling success');
                         }
                 }

                 alert('call 2...');
                 new Ajax.updater(id, URL, optionStr);
                 alert('call 3...');
         }

         /script

 apex:form 

         table width=100% height=400 cellpadding=0 cellspacing=0
 border=0 style=background: #F3F3EC
                 tr
                         td align=left valign=topnumber/td
                 /tr
                 tr
                 td
                                 apex:selectList id=prm_partnername_list  
 size=1
 onchange=doTest(); 
                                 apex:selectOptions 
 value={!partnerNameList}/
                                 /apex:selectList

                 /td

                 /tr
         /table

 /apex:form
 [/quote]
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Prototype in salesforce development

2009-06-27 Thread Nakata Kokuyo

Thanks for guidance T.J ..

one question, on Ajax.Updater(id, URL, optionStr), the second argument
is it MUST be file or can we have controller action which return
result ? Appreciated if you can show me some sample if possible ..

On Jun 27, 3:56 pm, T.J. Crowder t...@crowdersoftware.com wrote:
 Hi,

                  alert('call 2...');
                  new Ajax.updater(id, URL, optionStr);
                  alert('call 3...');

 JavaScript is case sensitive, Ajax.updater and Ajax.Updater are not
 the same thing.

 Can I strongly recommend using some kind of debugger for catching
 these things, like Firebug or the IE Dev toolbar, etc.  They would
 have told you that Ajax.updater was undefined.  Some resources here
 [1].

 [1]http://proto-scripty.wikidot.com/resources

 HTH,
 --
 T.J. Crowder
 tj / crowder software / com
 Independent Software Engineer, consulting services available

 On Jun 27, 8:33 am, Nakata Kokuyo alvincks...@gmail.com wrote:

  Good day,

  I have a problem by running prototype in salesforce visualforce page,
  which i unable to understand and have some doubts

  Below code is intend to allow user to select drop down list and able
  to update div with value in drop down list.

  Below code only able to run and call out alert on Call 2..., it seem
  like ajax.updater is not calling, anyone have idea on this, what is
  wrong in my code?

  Thank you for your guidance in advance !

  Coding :
  [quote]
  apex:includeScript value={!$Resource.jsr_class}/
  apex:includeScript value={!$Resource.prototype}/
  apex:includeScript value={!$Resource.scriptaculous_builder}/

  function doTest()
          {

                  var tempStr = $F('j_id0:j_id3:prm_partnername_list');
                  alert(tempStr);

                  if(tempStr != '')
                  {
                          alert('call 1...');
                          updater('j_id0:j_id3:thePanel', 
  'https://cs1.salesforce.com/apex/
  my_test?sfdc.tabName=01rS0004drs');

                  }
          }

          function updater(id, URL)
          {
                  var optionStr =
                  {
                          method : 'get',
                          onSuccess : function(){
                                  alert('calling success');
                          }
                  }

                  alert('call 2...');
                  new Ajax.updater(id, URL, optionStr);
                  alert('call 3...');
          }

          /script

  apex:form 

          table width=100% height=400 cellpadding=0 cellspacing=0
  border=0 style=background: #F3F3EC
                  tr
                          td align=left valign=topnumber/td
                  /tr
                  tr
                  td
                                  apex:selectList id=prm_partnername_list  
  size=1
  onchange=doTest(); 
                                  apex:selectOptions 
  value={!partnerNameList}/
                                  /apex:selectList

                  /td

                  /tr
          /table

  /apex:form
  [/quote]
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Prototype in salesforce development

2009-06-27 Thread T.J. Crowder

Hi,

 one question, on Ajax.Updater(id, URL, optionStr), the second argument
 is it MUST be file or can we have controller action which return
 result ?

It must be a URL (which is not necessarily a file, it depends on your
server configuration).

HTH,
--
T.J. Crowder
tj / crowder software / com
Independent Software Engineer, consulting services available


On Jun 27, 11:16 am, Nakata Kokuyo alvincks...@gmail.com wrote:
 Thanks for guidance T.J ..

 one question, on Ajax.Updater(id, URL, optionStr), the second argument
 is it MUST be file or can we have controller action which return
 result ? Appreciated if you can show me some sample if possible ..

 On Jun 27, 3:56 pm, T.J. Crowder t...@crowdersoftware.com wrote:

  Hi,

                   alert('call 2...');
                   new Ajax.updater(id, URL, optionStr);
                   alert('call 3...');

  JavaScript is case sensitive, Ajax.updater and Ajax.Updater are not
  the same thing.

  Can I strongly recommend using some kind of debugger for catching
  these things, like Firebug or the IE Dev toolbar, etc.  They would
  have told you that Ajax.updater was undefined.  Some resources here
  [1].

  [1]http://proto-scripty.wikidot.com/resources

  HTH,
  --
  T.J. Crowder
  tj / crowder software / com
  Independent Software Engineer, consulting services available

  On Jun 27, 8:33 am, Nakata Kokuyo alvincks...@gmail.com wrote:

   Good day,

   I have a problem by running prototype in salesforce visualforce page,
   which i unable to understand and have some doubts

   Below code is intend to allow user to select drop down list and able
   to update div with value in drop down list.

   Below code only able to run and call out alert on Call 2..., it seem
   like ajax.updater is not calling, anyone have idea on this, what is
   wrong in my code?

   Thank you for your guidance in advance !

   Coding :
   [quote]
   apex:includeScript value={!$Resource.jsr_class}/
   apex:includeScript value={!$Resource.prototype}/
   apex:includeScript value={!$Resource.scriptaculous_builder}/

   function doTest()
           {

                   var tempStr = $F('j_id0:j_id3:prm_partnername_list');
                   alert(tempStr);

                   if(tempStr != '')
                   {
                           alert('call 1...');
                           updater('j_id0:j_id3:thePanel', 
   'https://cs1.salesforce.com/apex/
   my_test?sfdc.tabName=01rS0004drs');

                   }
           }

           function updater(id, URL)
           {
                   var optionStr =
                   {
                           method : 'get',
                           onSuccess : function(){
                                   alert('calling success');
                           }
                   }

                   alert('call 2...');
                   new Ajax.updater(id, URL, optionStr);
                   alert('call 3...');
           }

           /script

   apex:form 

           table width=100% height=400 cellpadding=0 cellspacing=0
   border=0 style=background: #F3F3EC
                   tr
                           td align=left valign=topnumber/td
                   /tr
                   tr
                   td
                                   apex:selectList 
   id=prm_partnername_list  size=1
   onchange=doTest(); 
                                   apex:selectOptions 
   value={!partnerNameList}/
                                   /apex:selectList

                   /td

                   /tr
           /table

   /apex:form
   [/quote]


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Prototype in salesforce development

2009-06-27 Thread Rick Waldron
This is sort of redundant to TJ, but I'm going to throw it out there... I'm
not familiar with salesforce development, but firebug has a number of
add-ons that make life so much easier allowing you to debug your server side
code right in firebug:

http://getfirebug.com/extensions/index.html


I use FirePHP and FirePython


Rick





On Sat, Jun 27, 2009 at 6:47 AM, T.J. Crowder t...@crowdersoftware.comwrote:


 Hi,

  one question, on Ajax.Updater(id, URL, optionStr), the second argument
  is it MUST be file or can we have controller action which return
  result ?

 It must be a URL (which is not necessarily a file, it depends on your
 server configuration).

 HTH,
 --
 T.J. Crowder
 tj / crowder software / com
 Independent Software Engineer, consulting services available


 On Jun 27, 11:16 am, Nakata Kokuyo alvincks...@gmail.com wrote:
  Thanks for guidance T.J ..
 
  one question, on Ajax.Updater(id, URL, optionStr), the second argument
  is it MUST be file or can we have controller action which return
  result ? Appreciated if you can show me some sample if possible ..
 
  On Jun 27, 3:56 pm, T.J. Crowder t...@crowdersoftware.com wrote:
 
   Hi,
 
alert('call 2...');
new Ajax.updater(id, URL, optionStr);
alert('call 3...');
 
   JavaScript is case sensitive, Ajax.updater and Ajax.Updater are not
   the same thing.
 
   Can I strongly recommend using some kind of debugger for catching
   these things, like Firebug or the IE Dev toolbar, etc.  They would
   have told you that Ajax.updater was undefined.  Some resources here
   [1].
 
   [1]http://proto-scripty.wikidot.com/resources
 
   HTH,
   --
   T.J. Crowder
   tj / crowder software / com
   Independent Software Engineer, consulting services available
 
   On Jun 27, 8:33 am, Nakata Kokuyo alvincks...@gmail.com wrote:
 
Good day,
 
I have a problem by running prototype in salesforce visualforce page,
which i unable to understand and have some doubts
 
Below code is intend to allow user to select drop down list and able
to update div with value in drop down list.
 
Below code only able to run and call out alert on Call 2..., it
 seem
like ajax.updater is not calling, anyone have idea on this, what is
wrong in my code?
 
Thank you for your guidance in advance !
 
Coding :
[quote]
apex:includeScript value={!$Resource.jsr_class}/
apex:includeScript value={!$Resource.prototype}/
apex:includeScript value={!$Resource.scriptaculous_builder}/
 
function doTest()
{
 
var tempStr = $F('j_id0:j_id3:prm_partnername_list');
alert(tempStr);
 
if(tempStr != '')
{
alert('call 1...');
updater('j_id0:j_id3:thePanel', '
 https://cs1.salesforce.com/apex/
my_test?sfdc.tabName=01rS0004drs');
 
}
}
 
function updater(id, URL)
{
var optionStr =
{
method : 'get',
onSuccess : function(){
alert('calling success');
}
}
 
alert('call 2...');
new Ajax.updater(id, URL, optionStr);
alert('call 3...');
}
 
/script
 
apex:form 
 
table width=100% height=400 cellpadding=0
 cellspacing=0
border=0 style=background: #F3F3EC
tr
td align=left valign=topnumber/td
/tr
tr
td
apex:selectList
 id=prm_partnername_list  size=1
onchange=doTest(); 
apex:selectOptions
 value={!partnerNameList}/
/apex:selectList
 
/td
 
/tr
/table
 
/apex:form
[/quote]
 
 
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---