• ldChris
  • NEWBIE
  • 0 Points
  • Member since 2005

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 3
    Replies
I am not able to save using the default rich text editor:

I am trying to use:

Code:
<apex:inputtextarea id="editor" rows="10" style="width:100%;" value="{!Object_Name__c.html_source__c}" richtext="true"/>

 If I take out the richtext="true" and use
Code:
<apex:inputtextarea id="editor" rows="10" style="width:100%;" value="{!Object_Name__c.html_source__c}"/>

It works fine.

Thanks,
Chris
 





Message Edited by ldChris on 01-19-2009 03:52 PM
Is there a way to modify what fields are cloned? I have a couple of custom fields that messing things up.

alternatively, is there a way to tell cloned cases from non-cloned cases? I could just clean up the ones that get cloned.

Thanks,

Chris
Here is my code:

Dim cases(1) As sforce.sObject
Dim caseObj As sforce.Case
caseObj = New sforce.Case
caseObj.Id = Request.Form("caseId")
'--------------------------------
caseObj.acStatus__c = Request.Form("acStatus")
caseObj.acReason__c = Request.Form("acReason")
caseObj.acDate__c = "2005-01-01"
'--------------------------------
cases(0) = caseObj
Dim sr() As sforce.SaveResult = binding.update(cases)

It updates acStatus__c and acReason__c, but acDate__c stays null.

acDate__c is set as 'Date' in salesforce.

this is in vb asp.net

Thanks!

Chris

Message Edited by ldChris on 12-01-2005 01:44 PM

Message Edited by ldChris on 12-01-2005 01:45 PM

I am trying to, with asp.net, insert/update a custom object. I am just getting started and would appreciate any help or direction.

Thanks
Here is my code:

Dim cases(1) As sforce.sObject
Dim caseObj As sforce.Case
caseObj = New sforce.Case
caseObj.Id = Request.Form("caseId")
'--------------------------------
caseObj.acStatus__c = Request.Form("acStatus")
caseObj.acReason__c = Request.Form("acReason")
caseObj.acDate__c = "2005-01-01"
'--------------------------------
cases(0) = caseObj
Dim sr() As sforce.SaveResult = binding.update(cases)

It updates acStatus__c and acReason__c, but acDate__c stays null.

acDate__c is set as 'Date' in salesforce.

this is in vb asp.net

Thanks!

Chris

Message Edited by ldChris on 12-01-2005 01:44 PM

Message Edited by ldChris on 12-01-2005 01:45 PM

Hi,

Is anyone able to get DW to work with SF's WSDL?

When adding URL of WSDL file, what exactly do I put? http://www.sforce.com/us/docs/sforce.wsdl and in the Proxy generator?

Whatever I put there, I always get the error that say " Cannot read WSDL file" or other types of error.

Thank you!