• Sunil Wadeyar 4
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 6
    Questions
  • 5
    Replies
Hi,

I  am working on a canvas app where authentication should happen using SAML. Our application is already using CAS for authentication. Now the requirement is to authenticate all the users trying to access canvas app from salesforce. Should CAS be the IdP and Slaesforce be the SP?

Any comments are appreciated.
Hi,
In my Visualforce Page I have few labels where I'm using {!HTMLENCODE($Label.SomeText)}. In French Langauage there are some strings which contain apostrophe and it's rendering as ' . 

I tried JSENCODE as wll it shows "\'"(backslash followed by apostrophe)
Hi,
I have a cti adapter url like https://instance.xyz.com/callcenter . This is a load balancer url. This actually redirects request to https://instance1.xyz.com/callcenter or https://instance2.xyz.com/callcenter.

The issue is runApex, ClickToDial features are not working because in interactionFramework.js there is a security check with below code 
if (b.origin.toLowerCase() !== a.sofphoneEventOriginUrl)
    a.doPostMessage(null , null , LC.getLabel("InteractionApi", "InvalidSoftphoneIframeOrigin"));

Here b.origin will have either https://instance1.xyz.com/callcenter or https://instance2.xyz.com/callcenter and a.sofphoneEventOriginUrl will have https://instance.xyz.com/callcenter

How to setup load balanced call center in salesforce?
Hi Experts,
I'm working on customizing phone button of the call center console. As suggested by salesforce technical support I tried using sforce.console.setCustomConsoleComponentButtonText and it didn't working. callback is getting invoked.

If anyone has done this, please help.
Hi,

I am working on canvas app. I want to hide "Loading <Canvas App Name>..." message while loading canvas app. 
I have a apex:dataTable in which one column has number of checkboxes. If there are more number of checkboxes trailing checkboxes goes out of the table. 

As I know, setting layout to "pageDirection" renders checkboxes vertically down the page. Is there any way to show checkboxes in multiple lines? 

Hi All
I am facing issue with code compare between two org
for Example
in Dev_Org: I have pages and classes with custom lables and all developed components will be moving to Package_Org (Where I have created Namespace for managed package to publish into SF app exchange)

my Issue here is I have implemented hundreds of classes and pages. my developers concurrently working in Dev_Org and I should move this changes to Package_Org, I am using eclipse for deployment, but before deployment I always compare code between two org. and what ever the necessary changes I will deploy into another org. I am facing issue with nameSpace prefix. because take  page-1 I have used custom lables in it. and initially i deployed code to Package_Org. but in next deployment I have to move to page-2 but I should consider other changes for this purpose I am comparing code here if you observe I dont have any changes in page-1 right. but in code compare I got page-1 in the code difference list, due to namespace prefix appended in package_org.

Eg.,

page-1 in Dev_org
<apex:page>
     {!Label.HellowMessage}
<apex:page>
page-1 in Package_Org
<apex:page>
     {!Label.Namespace__HellowMessage}
<apex:page>
But like this happens for all the pages. I should really inspect each and every page unnecessarely wihout having code changes in it. what should I do. also I found some of the cusom labels dont have prefixed with nameSpance for them, why?
Eg.,
page-1 in Dev_org
<apex:page>
     {!Label.HellowMessage}
     {!Label.goodMorning}
<apex:page>
page-1 in Package_Org
<apex:page>
     {!Label.Namespace__HellowMessage}
     {!Label.goodMorning}  -  (why this custom lable dont have prefix)
<apex:page>

 

 

 

 


 

Hi Experts,
I'm working on customizing phone button of the call center console. As suggested by salesforce technical support I tried using sforce.console.setCustomConsoleComponentButtonText and it didn't working. callback is getting invoked.

If anyone has done this, please help.
Hi,

I am working on canvas app. I want to hide "Loading <Canvas App Name>..." message while loading canvas app. 
I have a apex:dataTable in which one column has number of checkboxes. If there are more number of checkboxes trailing checkboxes goes out of the table. 

As I know, setting layout to "pageDirection" renders checkboxes vertically down the page. Is there any way to show checkboxes in multiple lines? 
I am using the salesforce console integration toolkit api method sforce.console.setCustomConsoleComponentButtonIconUrl to change the default phone icon in footer console view. I am getting the response as successful but the icon is not getting changed.

Can anyone help me on how to change the default icon in console view?