Inlineedit Save freeze with VisualForce Apex:include Solution:http://boards.developerforce.com/t5/Visualforce-Development/Inlineedit-Save-freeze-with-VisualForce-Apex-include/td-p/479327
Read Only attribute of VF Page: http://boards.developerforce.com/t5/Apex-Code-Development/System-LimitException-Too-many-DML-statements-1/m-p/444541#M80847
Fetching Server URL in Visualforce Template: {!LEFT($Api.Partner_Server_URL_140, FIND('.com/',$Api.Partner_Server_URL_140)+3)} Refer: http://salesforce.stackexchange.com/questions/4696/trying-to-put-server-name-into-a-url-for-email-template
Setting Email Template in code without using settargerobjectid: http://techman97.wordpress.com/2013/10/08/sending-email-template-via-apex-no-targetobjectid/
To make the page block table height constant: apex:outputpanel layout="block" div id="divsrchResults" style="height:200px;overflow:scroll;overflow-x: hidden;" Pageblock Table..... /div /apex:outputpanel
using stypeclass value brandTertiaryBgr pbSubheader tertiaryPalette in salesforce: http://writeforce.blogspot.com/2012/10/improving-our-search-functionality-by.html
Error due to Database.queryLocator: (after we keep it ideal): "this page uses a query locator that is invalid. there is a limit of 50 querylocators per object"
To display help icon symbol on visualforce page salesforce: http://mindfiresfdcprofessionals.wordpress.com/2013/09/28/help-icon-symbol-not-showing-in-visualforce-page/
Server side pagination using wrapper class vusualforce page: http://www.sundoginteractive.com/sunblog/posts/server-side-pagination-in-apex-visualforce-for-custom-classes
Closing the parent window using javascript: function refreshParent() { window.opener.location.href = window.opener.location.href; if (window.opener.progressWindow){ window.opener.progressWindow.close() } window.close(); }
To display loading image when you click on a button, use below line within facet start (include in output panel along with command button): apex:image value="/img/loading32.gif" style="height: 15px;"
Rendering the pdf in different pages and giving page number for each page: https://help.salesforce.com/apex/HTViewSolution?urlname=Formating-VisualForce-Page-rendered-as-PDF-1327108686696&language=en_US
VF-Stadrd contrl-without pring fields on VF page- if we user getRecord below error will come - It can remember only Id by default: Content cannot be displayed: SObject row was retrieved via SOQL without querying the requested field.
Displaying number of records which are coming due to a rest call out on record detail page with inline visualforce, sometimes which is causing read time out error, to avoid this with onload of javascript, call controller class method display the status, oncomplete hide the status. To capture read time out error while making callout put in try and catch block
After Saving the record, How to navigate to some other url apart from detail page? customize new button > append 'saveURL = /' Note: - saveURL is Case - Sensitive. - URL encoding for / is '%2F' If we click on cancel, how to navigate to some other url? Customize new button > append 'restURL = %2F' Note: - %2F means '/' - retURL is Case - Sensitive. - in the same URL if we have both retURL and saveURL then if click on cancel it take retURL and if we click on save, it take saveURL.
In the URL please append 'nooverride=1' while overriding the new buttons please use vf page and in javascript include onload = function {document.location.href = url}
Use the following script to hide the inline visualforce page: function fnName() { var ifrm = parent.document.getElementById('Id of the vf page'); ifrm.style.height = "5px"; ifrm.style.visibility = "hidden"; } window.onload = fnName();
Forming html inside of a string value: 'tr'+'td'+'somevalue'+'td'+'td'+'somevalue'+'td'+'td'+'somevalue'+'td'+'td'+'somevalue'+'td'+'tr' Note: Add less than and greater than symbols.
Upon clicking on a button from the list of cases which belongs to a Queue with name 'Queue A' will be assigned to the requested user. If both the users request a same case at sametime (If it is in Sec gap) then first it it assigning to one user and then immediately it is assigning to other user. But once the case is assigned to one user it should not be assigned to some other user.
For the above scenario take validation rule, in that mention if the previous owner doesn't belongs to the queue then throw the validation rule (Upon updating validation rules will fire). In the Controller Class exception block we can capture this error message.
Now in the actionFunction function take onComplete attribute which will invoke if we return null as pageReference in the controller class. (Note: If we don't return null then onComplete won't invoke).
From onComplete call a javaScript method by passing the boolean value as parameter (Note: make this boolean value as true if it enters in to the our validation error exception block). We should pass boolean value as parameter while calling javaScript function otherwise it won't take the latest value. If you print the boolean value in the alert then make sure that you are rerendering that javaScript code also from the actionFunction.
In javaScript if the boolean value is true then call the actionFunction one more time (For other exceptions we are not calling this one more time).
This actionFunction is getting call for the javaScript onLoad event.
Displaying a window as popup: apex:outputLink title="View detail in a popup window" onclick="return openPopup('{!acc.Id}');"Detailsapex:outputLink
script function openPopup(id) { var newWin=window.open('{!$Page.Popup}?id=' + id, 'Popup', 'height=600,width=650,left=100,top=100,resizable=no,scrollbars=yes,toolbar=no,status=no'); if (window.focus) { newWin.focus(); }
For inputField displaying error message on the page: div class="errorMsg" style="display:{!IF(accountIdVal.hasError,'block','none')}">strongError:/strong {!accountIdVal.error}/div
Displaying Google Chart while generating PDF: https://anythingforeveryone.wordpress.com/2015/02/28/i-want-to-put-a-google-chart-inside-a-visualforce-page-rendered-as-pdf-is-that-possible-yes/
Incase of using 'recordSetVar', for the child objects (contact, case, employee__c) we should give the id in url but for the Parent objects without id it can display all the records.
In package custom fields are not recognizing after giving name space also. 1. Used Remote Objects to query from the database but displayed 'full custom field API Name should be specified', followed all the best approaches using shorthand for the custom fields, but not able to resolve the issue. 2. Directly used javaScript using sforce.connect still same problem 3. maintained the logic in apex class from the return type of the apex class, splitting the info. and displaying the information on the page. 4. Remote Object Model, sforce.connect will enforce user security.
Resolution: Finally found that for all the custom fields didn't give permission to any of the profile. (while querying in the developer console also same problem came) After giving permissions it started working.
apex expression in javaScript should be "{!variableName}" for String data types. apex expression in javaScript should be {!variableName} for Integer data types.
Custom Permissions - 1. Create a custom permission 2. Go to profile and navigate to custom permissions section and add the permission to profile/permission set 3. Refer the permission on VF page {!$permission.permissionName}. 4. In apex bit difficult syntax to use.
Passing Parameters to ActionFunction - While passing parameters through action function 'rerender' should be used or else parameters won't be passed. (will result in null)
Accessing visuaforce page url from managed package javaScript - Use /apex/c__ApexPageName while invoking URL from the javaScript of the Managed package.
while deleting a custom permission, It is showing that referred in a page but not able to find the references. Solution: Just edit the page and save it, it should be resolved.
Make sure to add includescript (script type="text/javascript") as below documentation - https://developer.salesforce.com/docs/atlas.en-us.api_console.meta/api_console/sforce_api_console_getenclosingtabid.htm
In line Visualforce Page: Issue: On changing the drop down value in UI View (changing division which call a method which redirect to the same page), and edit the view is causing the problem - "confirm form re-submission" blank screen in chrome browser. Resolution: changing division which call a method which redirect to the same page --> in the redirect url in server use pr.setRedirect(true)
no view state for standard controller
ReplyDeletewe can create a vf page with in the component it will display viewsate.
Deletewe can create a vf page with in the component it will display viewsate.
Deletewe can create a vf page with in the form component it will display viewsate.
DeletePagenation:
ReplyDeletehttp://blog.redpointsolutions.com/bid/182738/Add-Pagination-to-your-Visualforce-Pages-using-the-SOQL-OFFSET-Clause
On VF Page maximum of 1000 records we can display.
ReplyDeleteTo dispaly name along with field type in case of standard controller put inputField in pageBlockSection:
ReplyDelete-----------------------------------------
Inlineedit Save freeze with VisualForce Apex:include
ReplyDeleteSolution:http://boards.developerforce.com/t5/Visualforce-Development/Inlineedit-Save-freeze-with-VisualForce-Apex-include/td-p/479327
Read Only attribute of VF Page:
ReplyDeletehttp://boards.developerforce.com/t5/Apex-Code-Development/System-LimitException-Too-many-DML-statements-1/m-p/444541#M80847
Too many DML statements: 151
DeleteToo many DML statements: 1
Deletea href dynamic url format:
ReplyDeletehttp://boards.developerforce.com/t5/forums/forumtopicprintpage/board-id/apex/message-id/61050/print-single-message/false/page/1
Pagination without using Offset in Saleforce:
ReplyDeletehttp://cloudforce4u.blogspot.com/2013/06/visualforce-component-for-pagination-in.html
http://salesforce.stackexchange.com/questions/14217/error-while-trying-to-use-sforce-apex-execute
ReplyDeleteSetting tab focus in salesforce:
ReplyDeletehttp://boards.developerforce.com/t5/Visualforce-Development/Visualforce-taborder-How-to-set-focus-on-the-first-field-if-it/m-p/510691#M56628
Redirecting VF Page using Standard Save button:
ReplyDeletehttp://salesforce.stackexchange.com/questions/3907/redirecting-back-to-original-page-using-visualforce
To check validation error messages for standard controller:
ReplyDelete!ApexPages.hasMessages()
Wrapper Class Sorting:
ReplyDeletehttp://www.tgerm.com/2012/05/apex-comparable-sorting-examples-part-2.html
Fetching Server URL in Visualforce Template:
ReplyDelete{!LEFT($Api.Partner_Server_URL_140, FIND('.com/',$Api.Partner_Server_URL_140)+3)}
Refer:
http://salesforce.stackexchange.com/questions/4696/trying-to-put-server-name-into-a-url-for-email-template
Setting the window size in javascript:
ReplyDeletewindow.moveTo(0,0)
window.resizeTo(screen.width,screen.height);
Use above lines in a function and call from window.onload = functionName
DeleteSetting Email Template in code without using settargerobjectid:
ReplyDeletehttp://techman97.wordpress.com/2013/10/08/sending-email-template-via-apex-no-targetobjectid/
Popup window using javascript with the screen full size:
ReplyDeletewindow.open('url' ,'','height=1000,width=1400,left=0,resizable=yes,scrollbars=yes', 0);
To make the page block table height constant:
ReplyDeleteapex:outputpanel layout="block"
div id="divsrchResults" style="height:200px;overflow:scroll;overflow-x: hidden;"
Pageblock Table.....
/div
/apex:outputpanel
using stypeclass value brandTertiaryBgr pbSubheader tertiaryPalette in salesforce:
ReplyDeletehttp://writeforce.blogspot.com/2012/10/improving-our-search-functionality-by.html
Typo: stypeclass* , styleclass
DeleteTo hide the field label in salesforce:
ReplyDelete 
javascript methods:
ReplyDeletehttp://stackoverflow.com/questions/7720061/window-opener-location-href-works-in-ie-but-not-chrome-or-safari
http://forums.asp.net/t/1198828.aspx
Capturing parameters in javascript:
'{!$CurrentPage.parameters.parameter names}'
Custom Section Header Icon in salesforce:
ReplyDeletehttp://blogforce9.blogspot.in/2013/01/custom-section-header-icons-for-vf-pages.html
Tab Icons reference names:
ReplyDeletehttp://free-121d5f44d20-121d603d1c5-121ee2b8103.force.com/force2b/salesforceicons
Customizing salesforce style:
ReplyDeletehttps://developer.salesforce.com/forums/ForumsMain?id=906F00000008muxIAA
Use below code to hide the salesforce header:
style
.bPageHeader {
display:none;
}
/style
Error due to Database.queryLocator: (after we keep it ideal):
ReplyDelete"this page uses a query locator that is invalid. there is a limit of 50 querylocators per object"
Inserting multiple records at a time in salesforce:
ReplyDeletehttp://bobbuzzard.blogspot.in/2011/07/managing-list-of-new-records-in.html
Good Advanced Pagination Salesforce:
ReplyDeletePrevious First 1 2 3 4 5 .... Last Next
http://demo.redpointsolutions.com/Dynamic_Visualforce_with_SOQL_Offset
Hiding header and side bar for standard salesforce record (not visualforce):
ReplyDeletehttp://mindfiresfdcprofessionals.wordpress.com/2013/09/page/2/
To display help icon symbol on visualforce page salesforce:
ReplyDeletehttp://mindfiresfdcprofessionals.wordpress.com/2013/09/28/help-icon-symbol-not-showing-in-visualforce-page/
Displaying Batch job status in salesforce:
ReplyDeletehttp://www.tehnrd.com/batch-apex-status-bar/
Salesforce News:
ReplyDeletehttp://blog.deliveredinnovation.com/salesforce-business-logic/
Server side pagination using wrapper class vusualforce page:
ReplyDeletehttp://www.sundoginteractive.com/sunblog/posts/server-side-pagination-in-apex-visualforce-for-custom-classes
Giving single quotes within the string:
ReplyDelete' FieldName like \''+String.escapeSingleQuotes(Fieldname)+'\'';
apex:page
ReplyDeletestyle
a {background:#ccc url("../img/sprite-icons.png") no-repeat scroll -360px -100px transparent;
height:14px; width:12px;}
a:hover { background:#f00 url("../img/sprite-icons.png") no-repeat scroll -360px -100px transparent;}
.readmoreall { height:20px; width:40px; background:#ccc; display:table; padding:0px 0 0 20px;}
.readmore {background:#ccc url("/servlet/servlet.FileDownload?file=01590000002qDgb") no-repeat scroll -355px -100px;
text-indent:-9999px; display:block; height:20px; width:20px;}
.readmore:hover { background:#f00 url("/servlet/servlet.FileDownload?file=01590000002qDgb") no-repeat scroll -355px -100px;}
style
div class="readmoreall"
a href="www.google.com" class="readmore">Read</a
div
apex:page
apex:page
ReplyDeletestyle
.myButtonLink {
display: block;
width: 50px;
height: 30px;
background: url('/servlet/servlet.FileDownload?file=01590000002qDwZ') bottom;
text-indent: -99999px;
}
.myButtonLink:hover {
display: block;
width: 50px;
height: 30px;
background: url('/servlet/servlet.FileDownload?file=01590000002qDy6') bottom;
text-indent: -99999px;
}
/style
a class="myButtonLink" href="#LinkURL">Leaf/a
/apex:page
Hi this is ThirupathiReddy
ReplyDeleteWhile clicking on a command button to avoid standard validations use immediate = "true".
ReplyDeleteClosing the parent window using javascript:
ReplyDeletefunction refreshParent() {
window.opener.location.href = window.opener.location.href;
if (window.opener.progressWindow){
window.opener.progressWindow.close()
}
window.close();
}
To display loading image when you click on a button, use below line within facet start (include in output panel along with command button):
ReplyDeleteapex:image value="/img/loading32.gif" style="height: 15px;"
To maintain fixed height & length for page-block use below line:
ReplyDeletediv id="results" style="height:200px;overflow:scroll;overflow-x: hidden;"
Number wise pagination
ReplyDeletehttp://demo.redpointsolutions.com/Dynamic_Visualforce_with_SOQL_Offset
DeleteBuilding an angular JS App:
ReplyDeletehttp://www.toptal.com/angular-js/a-step-by-step-guide-to-your-first-angularjs-app
Sublime Text Editor
ReplyDeleteRendering the pdf in different pages and giving page number for each page:
ReplyDeletehttps://help.salesforce.com/apex/HTViewSolution?urlname=Formating-VisualForce-Page-rendered-as-PDF-1327108686696&language=en_US
To send special characters(&, etc..) in the url use below format to send the values in VF pages:
ReplyDeleteEncodingUtil.urlEncode(Value,,'UTF-8')
Display all the lines of list in order:
ReplyDeleteli style="list-style-position: outside;"
VF-Stadrd contrl-without pring fields on VF page- if we user getRecord below error will come - It can remember only Id by default: Content cannot be displayed: SObject row was retrieved via SOQL without querying the requested field.
ReplyDeleteDisplaying number of records which are coming due to a rest call out on record detail page with inline visualforce, sometimes which is causing read time out error, to avoid this with onload of javascript, call controller class method display the status, oncomplete hide the status. To capture read time out error while making callout put in try and catch block
ReplyDeleteWe cannot edit the 'Save' button.
ReplyDeleteAfter saving, to navigate to some other url customize new button and append 'SAVEURL' to url.
ReplyDeleteAfter Saving the record, How to navigate to some other url apart from detail page?
ReplyDeletecustomize new button > append 'saveURL = /'
Note:
- saveURL is Case - Sensitive.
- URL encoding for / is '%2F'
If we click on cancel, how to navigate to some other url?
Customize new button > append 'restURL = %2F'
Note:
- %2F means '/'
- retURL is Case - Sensitive.
- in the same URL if we have both retURL and saveURL then if click on cancel it take retURL and if we click on save, it take saveURL.
Small correction: Customize new button > append 'retURL = %2F'
ReplyDeleteOverriding the buttons:
ReplyDeletefor the standard buttons, we cannot override button with java script only for the custom buttons, it will be available.
onload if we give url navigation, it is keep on looping, How to avoid this?
ReplyDeleteIn the URL please append 'nooverride=1' while overriding the new buttons please use vf page and in javascript include onload = function {document.location.href = url}
DeleteHiding the inline visualforce page: Use id of the visualforce page in javascript to hide.
ReplyDeleteUse the following script to hide the inline visualforce page:
Deletefunction fnName() {
var ifrm = parent.document.getElementById('Id of the vf page');
ifrm.style.height = "5px";
ifrm.style.visibility = "hidden";
}
window.onload = fnName();
Forming html inside of a string value:
ReplyDelete'tr'+'td'+'somevalue'+'td'+'td'+'somevalue'+'td'+'td'+'somevalue'+'td'+'td'+'somevalue'+'td'+'tr'
Note: Add less than and greater than symbols.
ActionSupport is not working:
ReplyDeleteFrom inside of the pageBlockSectionItem actionSupport won't work.
mouse event are not working:
ReplyDeletefor output Text mouse events won't work use output label.
Upon clicking on a button from the list of cases which belongs to a Queue with name 'Queue A' will be assigned to the requested user.
ReplyDeleteIf both the users request a same case at sametime (If it is in Sec gap) then first it it assigning to one user and then immediately it is assigning to other user.
But once the case is assigned to one user it should not be assigned to some other user.
For the above scenario take validation rule, in that mention if the previous owner doesn't belongs to the queue then throw the validation rule (Upon updating validation rules will fire). In the Controller Class exception block we can capture this error message.
Now in the actionFunction function take onComplete attribute which will invoke if we return null as pageReference in the controller class. (Note: If we don't return null then onComplete won't invoke).
From onComplete call a javaScript method by passing the boolean value as parameter (Note: make this boolean value as true if it enters in to the our validation error exception block). We should pass boolean value as parameter while calling javaScript function otherwise it won't take the latest value. If you print the boolean value in the alert then make sure that you are rerendering that javaScript code also from the actionFunction.
In javaScript if the boolean value is true then call the actionFunction one more time (For other exceptions we are not calling this one more time).
This actionFunction is getting call for the javaScript onLoad event.
This is an example of actionFunction Chaining.
DeleteDisplaying a window as popup:
ReplyDeleteapex:outputLink title="View detail in a popup window" onclick="return openPopup('{!acc.Id}');"Detailsapex:outputLink
script
function openPopup(id)
{
var newWin=window.open('{!$Page.Popup}?id=' + id, 'Popup',
'height=600,width=650,left=100,top=100,resizable=no,scrollbars=yes,toolbar=no,status=no');
if (window.focus)
{
newWin.focus();
}
return false;
}
script
Use escape for save url or else give asci code for &
ReplyDeleteWe should use URLENCODE() for both retURL and saveURL
DeleteFor inputField displaying error message on the page:
ReplyDeletediv class="errorMsg" style="display:{!IF(accountIdVal.hasError,'block','none')}">strongError:/strong {!accountIdVal.error}/div
Date format in Visualforce Page:
ReplyDeleteapex:outputText value=”{0,date,M/d/yyyy hh:mm a}”
Deleteapex:param value=”{!Account.createdDate}”
/apex:outputText
Currency symbol in Vf page:
ReplyDeleteapex:outputText value="${0, number, ###,###,###,##0.00}"
apex:param value="{!Account.Amount__c}"/
/apex:outputText>
Refer: http://blogforce9.blogspot.com/2012/12/currency-formatting-in-visualforce-page.html
Salesforce Standard Section Style:
ReplyDeletestyle
.detailList1 {
width: 100%;
}
.detailList1 .labelCol{
padding-right: 10px;
padding-left: 2px;
text-align: right;
font-size: 91%;
font-weight: bold;
color: #4a4a56;
width: 16%;
padding-top: 3px;
padding-bottom: 3px;
}
.detailList1 .dataCol{
width: 33%;
text-align: left;
padding-top: 3px;
padding-right: 2px;
padding-bottom: 2px;
padding-left: 12px;
text-align: left;
}
.detailList1 .labelCol1{
padding-right: 10px;
padding-left: 2px;
text-align: right;
font-size: 91%;
font-weight: bold;
color: #4a4a56;
width: 19%;
padding-top: 3px;
padding-bottom: 3px;
}
.detailList1 td{
border-bottom:1px dotted #ececec;
}
/style
table class="detailList1"
tbody
tr
td class="labelCol"Test1/td
td class="dataCol col02"Test2/td
td class="labelCol1"Test3/td
td class="dataColTest4/td
/tr
tr
td class="labelCol"Test1/td
td class="dataCol col02"Test1/td
td class="labelCol1"Test1/td
td class="dataCol"Test1/td
/tr
tr
td class="labelCol"Test1/td
td class="dataCol col02"Test1/td
/tr
/tbody
/table
To clone the record, please follow as mentioned below -
ReplyDelete------
cloneURL = '/'+recordId+'/e?clone=1
Advanced Visualforce Development with JavaScript:
ReplyDelete1. JavaScript Rmoting
2. Remote Objects
Refer:
https://developer.salesforce.com/events/webinars/advanced_visualforce_development?cta=text
Displaying Google Chart while generating PDF:
ReplyDeletehttps://anythingforeveryone.wordpress.com/2015/02/28/i-want-to-put-a-google-chart-inside-a-visualforce-page-rendered-as-pdf-is-that-possible-yes/
Communication between Visualforce Component and Visualforce page:
ReplyDeletehttps://developer.salesforce.com/page/Controller_Component_Communication
1. 1, 2, 3, 2, 1, 2, 3, 2, 1, ... generating with apex code?
ReplyDelete2. Upon clicking on account name related contacts should display.
Incase of using 'recordSetVar', for the child objects (contact, case, employee__c) we should give the id in url but for the Parent objects without id it can display all the records.
ReplyDeleteLightning Findings -
ReplyDeleteWe cannot refresh svg icons tables in VF page.
Reference: https://github.com/salesforce-ux/design-system/issues/47
In package custom fields are not recognizing after giving name space also.
ReplyDelete1. Used Remote Objects to query from the database but displayed 'full custom field API Name should be specified',
followed all the best approaches using shorthand for the custom fields, but not able to resolve the issue.
2. Directly used javaScript using sforce.connect still same problem
3. maintained the logic in apex class from the return type of the apex class, splitting the info. and displaying the information on the page.
4. Remote Object Model, sforce.connect will enforce user security.
Resolution: Finally found that for all the custom fields didn't give permission to any of the profile.
(while querying in the developer console also same problem came)
After giving permissions it started working.
LastViewDate Issue while querying from using SQL -
ReplyDeletehttps://success.salesforce.com/issues_view?id=a1p30000000T0tvAAC
apex expression in javaScript should be "{!variableName}" for String data types.
ReplyDeleteapex expression in javaScript should be {!variableName} for Integer data types.
Custom Permissions -
ReplyDelete1. Create a custom permission
2. Go to profile and navigate to custom permissions section and add the permission to profile/permission set
3. Refer the permission on VF page {!$permission.permissionName}.
4. In apex bit difficult syntax to use.
Calling Aura Method:
ReplyDeletewhile calling Aura method while setting parameters in JS Controller/helper param names should be same as controller class params.
Passing Parameters to ActionFunction -
ReplyDeleteWhile passing parameters through action function 'rerender' should be used or else parameters won't be passed. (will result in null)
Taking page back and forward -
ReplyDeletewindow.history.back() to go back to the previous page.
window.history.forward() to go to the next page.
Accessing visuaforce page url from managed package javaScript -
ReplyDeleteUse /apex/c__ApexPageName while invoking URL from the javaScript of the Managed package.
To fetch the portal name from the url -
ReplyDeletewindow.location.href.split('/')[3]
while deleting a custom permission, It is showing that referred in a page but not able to find the references.
ReplyDeleteSolution: Just edit the page and save it, it should be resolved.
Managed Package:
ReplyDeleteCannot add additional parameters for the global/webservice methods for the new version of the managed package
To get the data type of a field in the visualforce page
ReplyDelete$ObjectType[objName].fields[fld].Type
Opening the hyperlink in new tab within the cosole if it is in cosole -
ReplyDeletehttps://developer.salesforce.com/forums/?id=9060G000000XfF8QAK
Make sure to add includescript (script type="text/javascript") as below documentation -
https://developer.salesforce.com/docs/atlas.en-us.api_console.meta/api_console/sforce_api_console_getenclosingtabid.htm
In line Visualforce Page:
ReplyDeleteIssue: On changing the drop down value in UI View (changing division which call a method which redirect to the same page), and edit the view is causing the problem -
"confirm form re-submission" blank screen in chrome browser.
Resolution: changing division which call a method which redirect to the same page --> in the redirect url in server use pr.setRedirect(true)
Cannot read property 'call' of undefined with google chart, issue is with the options.
ReplyDelete