Visualforce is Salesforce.
I have the following Trigger: trigger send_notification on Inquery__c (after update) { Inquery__c inquery = trigger.new[0]; String[] toAddresses = …
apex-code visualforceHow do I print the current date on Visualforce? Stuff like Today(), System.now, doesn't work. Haven't been able to …
salesforce visualforceI have an apex function which has a void return type. I want to exit the function at a specific …
salesforce apex-code visualforceI am trying to develop a visualforce custom component which takes an attribute from a visual force page. I need …
salesforce apex-code visualforceI am looking at showing a subquery SOQL query in an Visualforce page. This is my SOQL Expression. public ApexPages.…
salesforce apex-code visualforce soql force.comI am a newbie in this field. First time trying to code a VisualForce page. I have created a custom …
salesforce apex-code visualforceIs there a way to increment a value in a map without needing a second variable? for example, this doesn't …
map salesforce apex-code increment visualforceHi I am getting a headache with the visualforce repeater control: <apex:repeat value="{!productDetails}" var="o"> <…
salesforce visualforceI am facing a problem while disabling the command button after one click. I am using action function for this …
salesforce visualforceI want to create a custom exception. In this exception I want to make a constructor which take one string …
salesforce apex-code visualforce apex