how can I write more embedded " and ' in php ? For example, I dunno how to write this html complete element with all apex:
As you can see, I use '' for the php string. Then inside, I use "", but then I need another level of apix and I dunno how to write that one in my php document. (php thinks that the string is complete in the middle b...
I have an existing Workflow Rule that fires of a (SOAP) Outbound Message when a certain type of object is created or updated. That works fine.
I want to extend it so that a similar Outbound Message is also sent when the objects are deleted.
According to this discussion, Workflow Rules cannot be made to fire based on object deletions, s...
Friends,
My apex page has several different radio groups, each one can have the value of Yes or No.
When the user presses a button I need to capture the values of these radio groups in the javascript processing for the page and then "do stuff" dependent on their values.
Is there an Apex Javascript API that I could utilise to obta...
hi folks,
i have an app in salesforce..but i need a standalone webpage ..so i imported the objects created ..please coulde you give the codes for this three buttons...
add
edit
delete
...
Hi All,
I have created an app in salesforce platform,
i have some primitive records in that, i need to import them in visual force.
For example,if we create a record in Account in Salesforce,,,
like charles,Jennifer,Tom and all
i need to import them in visualforce and do things which i can do in salesforce..please help me out with t...
Check client side that any 2 out of three fields have been completed before allowing submision of a form
Show/hide data capture fields based on the value of a check box (all client side)?
...
Hi,
Hoping someone could pls let me know how to prevent the symbol "&" from being replaced by "&" within my URL, specifically within javascript?
Just to expand on requirement, I am getting my url from an oracle database table, which I then use within Oracle Application Express, to set the src attribute of an iframe to this url.
FY...
I came across this RDMS via the advert on stackoverflow. Seems to be in the vein of MS Access / Filemaker / Apex database development tools but focused on web based applications. It quotes rave reviews from EWeek and a favourable mention from Dr Dobbs regarding its ability to create AJAX web applications without coding.
The Eweek rev...
hi folks ,
I'm trying to develop a website using visual force with apex.
but i'm unable., please guide me .. i'm unable to find the docs regarded with the visual force..
help me with the documents and websites regarding them !! please !!
...
Hi,
I have a column in a database table that contains several urls and I was wondering what is the best way to get these urls from the database table into a javascript function.
Example code of how to approach this would be much appreciated.
Thanks.
...
Hi,
I am trying to run this code from this thread in StackOverflow in Oracle ApeX and it looks as if the setTimeout call is not working as suppose to:
[see thread][1]
<html lang="en">
<head>
<title>Dashboard Example</title>
<style type="text/css">
body, html { margin: 0; padding: 0; width: 100%; height: 100%; overflow: hidden; }
ifram...
Hi,
I have the following code that I am playing with:
<script type="text/javascript">
var Dash = {
nextIndex: 0,
dashboards: [
{url: 'http://www.google.com', time: 5},
{url: 'http://www.yahoo.com', time: 10}
],
display: function()
{
var dashboard = Dash.dashboards[Dash.nextIndex];
p...
I have been using SOAP to deal with Salesforce.com and have been using the getUpdated() call, using the timestamp I retrieve from the getServertimestamp() call.
I have watched my process check, (it polls every minute) and a few seconds after I save the change in the Sandbox environment, I see it poll, get no <ids> in the getUpdated cal...
When using the SOAP API to work with salesforce.com (SFDC) it seems that the primary key in the underlying database is Id. Well there seems to be two representations of this value as either a 15 character version or an 18 character version.
I have been using the 18 since it is clearly more specific, but what is contained in the last th...
Friends,
I'm converting an Oracle Form to Apex and have run into problem(s?) which I hope you can help with. Put simply the problem is how do I reference adjacent cells in an Apex tabular form? Is it possible?
The reason for asking is that I need to create a tabular form with 3 dependent select lists, lets call them:
Divisions
...
I'm going to build application using Application Express and Oracle Database Enterprise, VPD Implemented on the schema using Context,
for developer issue I set on login trigger to set user;
but I can't view data inside application but I can view it using SQL statement
So is their issue in Apex when using VPD , Context , or On log on t...
Friends,
I have written the following JavaScript to ascertain which row of an tabular form the user is currently on. i.e. they have clicked a select list on row 4. I need the row number to then get the correct value of a field on this same row which I can then perform some further processing on.
What this JavaScript does is get the i...
Hi Everyone:
I'm trying to disable a button inside of a form region in Oracle Application Express (Apex v3) in an ajax-ified manner. I'm using jQuery to accomplish the ajax part.
$('#P16_MYBUTTON').hide();
Doing a view source on the rendered page I noticed that the button doesn't have an ID even though in Apex I've given it a name...
I can't figure out why this isn't working:
<apex:repeat value="{!MyContacts}" var="c" >
<c:ContactRowComponent contactLastName="{!c.LastName}"/>
</apex:repeat>
(where on the main controller MyContacts returns an array of Contact objects, and on the component contactLastName is defined as a String attribute)
This gives me error:...
Hi,
I need to load data into two objects. I am able to load data into one object using the data loader. The second object has a master-details relationship with the first object so I need to have the unique record id of the records of first object in the CSV file. How can I add those record id's to my CSV file?
Thank you.
...