Hi, I'm Cathy, a Web Designer/Developer/WordPress Fanatic/Salesforce.com APEX Coder, etc. and I'm from the Philippines. Learn more about me...

How to access element values inside an iframe using Javascript?

Published by under Web Development on Sunday, August 2nd, 2009 at 12:23 am

Here’s another helpful post for beginners in how to access element values inside an iframe.

var txt = window.frames["iframeName"].document.forms["formName"].elements["elementName"].value;

Tip:  To avoid confusion, your page elements should have the same Id and Name.

I hope this helps!

No responses yet

Batch Update SObject in Salesforce.Com (VB.Net)

Published by under Salesforce.com on Tuesday, May 19th, 2009 at 12:04 am

salesforce dice

I’m sharing this code because I know a lot of new salesforce developers are pulling their hair out looking for concrete samples on how to do API batch update. Yes it took me awhile to be able to solve this problem. APEX API documentation doesn’t give it all and it’s frustrating…

So much for that, here’s how I did it. My sample is updating a custom field in Opportunity Object using VB.Net.


Dim arrUpdateID As New ArrayList  'This ArrayList holds the Opportunity IDs I need to update, I didn't included the query - that will be your task
 
Dim objOppx(199) As Opportunity
 
For d = d To arrUpdateID.Count - 1
 
Dim updateOppx As New Opportunity
 
updateOppx.Id = arrUpdateID(d) ' You need an ID when you update
updateOppx.Downloaded__c = True ' This is a checkbox in SFDC where I'm setting it to true
updateOppx.Downloaded__cSpecified = True ' This is required when updating a boolean field
objOppx(d) = updateOppx ' Storing opportunity values to  objOppx which is an array of Oppty
 
Next
 
Dim sr() As SaveResult = sfdc.update(objOppx) ' This is where the updating happens, this line of code should be outside the loop
 
For j As Integer = 0 To sr.Length - 1
Dim msgerr As String
 
If Not sr(j).success Then
msgerr = "Error updating Opportunity ID: " + sr(j).id + ". The error was: " _
+ sr(j).errors(0).message
End If
 
Next

Note: You can only update 200 records in an Object at a time due to Governor limits, so you need to make some work around with that issue. I have done that through chunking up my array of IDs to update. I’ll leave that up to you! :)

I hope this post helps! There will be more to come as I learn Salesforce.com and APEX programming.

Stay tuned!

No responses yet

May the Force Be With Me

Published by under Salesforce.com on Wednesday, May 13th, 2009 at 12:20 am

salesforce-logoYes, I’m one of them now! I’m now part of the leader in Customer Relationship Management (CRM) & Cloud Computing…Salesforce.Com!

No responses yet

Despedida and Birthday Bash part 2

Published by under Self-Confessions on Sunday, March 22nd, 2009 at 1:04 am

Eto na yung part 2, medyo natagalan kc medyo busy ang career. hahaha!

3 responses so far

Despedida and Birthday Bash part 1

Published by under Self-Confessions on Sunday, March 15th, 2009 at 2:44 am

No more words to say just look at the photos…

This is just the first batch of pics aka part 1. :D

4 responses so far

« Prev - Next »