-
ChatterFeed
-
0Best Answers
-
3Likes Received
-
0Likes Given
-
12Questions
-
13Replies
How will achieve auto complete or search functionality on a non-VF page like HTML?
I have a html file inside the Resource Bundle. On this page I want to use the autocomplete or seach feature. How can I do this?
Remember, I don't want to use the VF Page here.
-
- sfdcviraj
- January 08, 2016
- Like
- 0
- Continue reading or reply
TwitterForce not working. Something wrong with this?
- https://developer.salesforce.com/page/Getting_Started_with_TwitterForce
However, in the Configuring Security, at this stage I need to enter a remote site setting URL in Salesforce setting. This URL doesn't work now. Also checked the URL directly pasting on new tab, but the page do not exist now.
Any work around to make this possible? I believe there must be some new API URL that needs to imported, which must be a new URL for site settings.
Need help to make this work, thank you.
-
- sfdcviraj
- October 14, 2015
- Like
- 0
- Continue reading or reply
How to hide a blocksection onload of a VF Page?
By default, the pageblocksection appears due to obvious reason its not hidden.
How can I hide this pageblock section with id="wanttohidethispageblock" on VF page onload.
Thanks.
-
- sfdcviraj
- October 12, 2015
- Like
- 0
- Continue reading or reply
Why BR() or <br/> do not work in formula field? What's wrong with my peice of code?
IF(Chk_Criteria1__c = true, 'Documentation|' & Remark_Criteria1__c & BR(), '') & IF(Chk_Criteria2__c = true, 'Email Etiquette|' & Remark_Criteria2__c & BR(), '') &I expect that BR() should break the lines when i display on VF Page, but it doesn't. Any problem that I'm missing?
I see the below on VF page.
Pls help. Thanks.
-
- sfdcviraj
- October 09, 2015
- Like
- 0
- Continue reading or reply
How to find number of days as a result for record created date from today() ?
How can use the below code in my vf page?
Date startDate = Date.newInstance(2008, 1, 1); Date dueDate = Date.newInstance(2008, 1, 30); Integer numberDaysDue = startDate.daysBetween(dueDate);
Something else tricky to get the number back as a result? Further I need to show that in a table.
-
- sfdcviraj
- October 08, 2015
- Like
- 0
- Continue reading or reply
Whats wrong with this DatePicker?
<apex:pageBlockSectionItem > <apex:outputLabel value="From Date"/> <apex:inputField value="{!CustomObject__c.From_Date__c}" id="fromDate" /> </apex:pageBlockSectionItem>
I'm trying to use this simple datepicker which has the date type as date/time. When I try to use in my VF Page and click on the field, the datepicker doesn't pop-up.
What's wrong? Pls help.
-
- sfdcviraj
- October 05, 2015
- Like
- 0
- Continue reading or reply
Why I'm unable to login to trailhead from Firefox browser?
It opens on Google Chrome, but what's wrong with the Firefox?
Please help.
-
- sfdcviraj
- September 28, 2015
- Like
- 0
- Continue reading or reply
[Urgent]** How can I dynamically add record to a VF page along with checkbox, the record name & textarea?
On other hand, I have a VF page and I have added a static table like below in image
If you can see the documentation and email etiquette are the types. So I need to add them dynamically in the VF page of this table from the custom object called Type as mentioned above.
To make it more clear, I add a new type called "Providing Updates" in type object, this record with checkbox, record name and the textarea box shoule automatically get added in the vf page.
Can this be achieved?
Thank you.
-
- sfdcviraj
- September 25, 2015
- Like
- 0
- Continue reading or reply
How to get custom object's records in tabular format to export in excel or csv format?
For this to achieve, we are using REST API to fetch custom object record.
Now that we are facing issue in getting response in proper format to JSON and then that record in to excel.
That would be a great help if assisted. Thanks.
-
- sfdcviraj
- September 10, 2015
- Like
- 0
- Continue reading or reply
What is the keyboard shortcut for commenting code in developer console?
I have this below code.
<apex:page standardController="Account"> {! Account.Name } {! Account.Phone} </apex:page>I can comment the code by standard way (" <!-- This is commented part --> ") which I can do with few clicks.
Is there a way using the keyboard shortcut to do so? MS Visual Studio has it. May be the Eclipse too, although not sure.
Please help, thanks!
-
- sfdcviraj
- July 10, 2015
- Like
- 1
- Continue reading or reply
Why does the auto complete doesn't work properly?
When I press enter to select the suggested auto populated tags, it prints as - =""
Again I need to type and select it slow. Doesn't work blinking faster.
What's wrong?
-
- sfdcviraj
- July 09, 2015
- Like
- 2
- Continue reading or reply
How do I comment the Apex code?
I was trying to comment the code as
<! -- <apex:pageBlockSection> <p>{! IF( CONTAINS('salesforce.com','force.com'), 'Yep', 'Nope') }</p> <p>{! IF( DAY(TODAY()) < 15, 'Before the 15th', 'The 15th or after') }</p> </apex:pageBlockSection> -->It shows as if its commented in the developer console, but it doesn't reflect on preview.
Am I doing something wrong? Please suggest.
Thanks!
-
- sfdcviraj
- July 08, 2015
- Like
- 0
- Continue reading or reply
What is the keyboard shortcut for commenting code in developer console?
I have this below code.
<apex:page standardController="Account"> {! Account.Name } {! Account.Phone} </apex:page>I can comment the code by standard way (" <!-- This is commented part --> ") which I can do with few clicks.
Is there a way using the keyboard shortcut to do so? MS Visual Studio has it. May be the Eclipse too, although not sure.
Please help, thanks!
-
- sfdcviraj
- July 10, 2015
- Like
- 1
- Continue reading or reply
Why does the auto complete doesn't work properly?
When I press enter to select the suggested auto populated tags, it prints as - =""
Again I need to type and select it slow. Doesn't work blinking faster.
What's wrong?
-
- sfdcviraj
- July 09, 2015
- Like
- 2
- Continue reading or reply
How to hide a blocksection onload of a VF Page?
By default, the pageblocksection appears due to obvious reason its not hidden.
How can I hide this pageblock section with id="wanttohidethispageblock" on VF page onload.
Thanks.
- sfdcviraj
- October 12, 2015
- Like
- 0
- Continue reading or reply
Why BR() or <br/> do not work in formula field? What's wrong with my peice of code?
IF(Chk_Criteria1__c = true, 'Documentation|' & Remark_Criteria1__c & BR(), '') & IF(Chk_Criteria2__c = true, 'Email Etiquette|' & Remark_Criteria2__c & BR(), '') &I expect that BR() should break the lines when i display on VF Page, but it doesn't. Any problem that I'm missing?
I see the below on VF page.
Pls help. Thanks.
- sfdcviraj
- October 09, 2015
- Like
- 0
- Continue reading or reply
Whats wrong with this DatePicker?
<apex:pageBlockSectionItem > <apex:outputLabel value="From Date"/> <apex:inputField value="{!CustomObject__c.From_Date__c}" id="fromDate" /> </apex:pageBlockSectionItem>
I'm trying to use this simple datepicker which has the date type as date/time. When I try to use in my VF Page and click on the field, the datepicker doesn't pop-up.
What's wrong? Pls help.
- sfdcviraj
- October 05, 2015
- Like
- 0
- Continue reading or reply
- Dineshwaran Hariram
- August 08, 2015
- Like
- 0
- Continue reading or reply
What is the keyboard shortcut for commenting code in developer console?
I have this below code.
<apex:page standardController="Account"> {! Account.Name } {! Account.Phone} </apex:page>I can comment the code by standard way (" <!-- This is commented part --> ") which I can do with few clicks.
Is there a way using the keyboard shortcut to do so? MS Visual Studio has it. May be the Eclipse too, although not sure.
Please help, thanks!
- sfdcviraj
- July 10, 2015
- Like
- 1
- Continue reading or reply
Why does the auto complete doesn't work properly?
When I press enter to select the suggested auto populated tags, it prints as - =""
Again I need to type and select it slow. Doesn't work blinking faster.
What's wrong?
- sfdcviraj
- July 09, 2015
- Like
- 2
- Continue reading or reply
How do I comment the Apex code?
I was trying to comment the code as
<! -- <apex:pageBlockSection> <p>{! IF( CONTAINS('salesforce.com','force.com'), 'Yep', 'Nope') }</p> <p>{! IF( DAY(TODAY()) < 15, 'Before the 15th', 'The 15th or after') }</p> </apex:pageBlockSection> -->It shows as if its commented in the developer console, but it doesn't reflect on preview.
Am I doing something wrong? Please suggest.
Thanks!
- sfdcviraj
- July 08, 2015
- Like
- 0
- Continue reading or reply
How I can access to vídeos "Who Sees What: Data Visibility How To's" in youtube?
I want to see the video to continue the tutorial, but displays the message of "private".
https://www.youtube.com/watch?v=X3Hg6OXhPO8&list=PL6747B4DAE356E17C&index=1
- Rafa Santos
- July 02, 2015
- Like
- 0
- Continue reading or reply
Simple VF
Create a page which displays a subset of Opportunity fields using apex:outputField components. Bind the Name, Amount, Close Date and Account Name fields to the apex:outputField components.The page must be named 'OppView'.
It must reference the Opportunity standard controller.
It must have an apex:outputField component bound to the Opportunity Name.
It must have an apex:outputField component bound to the Opportunity Amount.
It must have an apex:outputField component bound to the Opportunity Close Date.
It must have an apex:outputField component bound to the Account Name of the Opportunity.
My Answer:
<apex:page standardcontroller="Opportunity">
<apex:pageBlock>
<apex:pageBlockTable >
<apex:outputField value="{!Opportunity.Opportunity Name}"/>
<apex:outputField value="{!Opportunity.Amount}"/>
<apex:outputField value="{!Opportunity.Close Date}"/>
<apex:outputField value="{!Opportunity.Account Name}"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
Error Displaying:
Error: Missing required attribute value in <apex:pageBlockTable> in OppView at line 3 column 25
Please help to improve my knowledge
- Lohith Matam
- May 20, 2015
- Like
- 0
- Continue reading or reply
Keyboard shortcut for Save
Does anyone has any experience on this
- Menaka Raghuvanshi
- March 25, 2015
- Like
- 0
- Continue reading or reply
Deleting all the records of a custom object
- rezasadoddin1.3878325535858708E12
- December 23, 2013
- Like
- 4
- Continue reading or reply
Add Row functionality in VisualForce
Hi
I have a VF page where in I am using case standard controller.
The first time when the page is displayed 2 input fields (eg.) are there i.e. Name and Email. which are static. Another 2 fields are their like Vendor Name and Vendor Contact No. which are dynamic.
Now, I want to implement the functionality wherein if a user clicks on Add Row button, 1more row will appear to enter a value in both the fields(Vendor name and Vendor Contact No.). So, if he clicks the button 5 times, 5 rows shud appear with thses two columns.
After providing the inputs, he will click on "Save " button, and the record should be saved wherein the inputs provided in multiple rows should be saved into the related list of the Case detail page (Case details page will contain the information like Name and Email). Request you to please forward me the code for the above mentioned functionality. Since its a n urgent requirement. An early reply will be highly appreciated. Thanks.
- emp
- May 07, 2010
- Like
- 0
- Continue reading or reply