• reach2paul
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 1
    Replies
Hi,

We have an actionFunction to rerender different panels and components of the page. But recently we noticed that after rerendering the VF components the following html code is generated. This code generated is not related to any of the codes or scripts within my workspace.


{code:xml}
try{if(!document.getElementById('datePicker')){var bodyEl=document.body;var div=document.createElement('div');div.innerHTML='<div class="datePicker" id="datePicker"><div class="dateBar"><img src="/s.gif" alt="Previous Month" class="calLeft" onblur="this.className = \'calLeft\';" onclick="DatePicker.datePicker.prevMonth();" onfocus="this.className = \'calLeftOn\';" onmouseout="this.className = \'calLeft\';" onmouseover="this.className = \'calLeftOn\';" title="Previous Month"/><select id="calMonthPicker" name="calMonthPicker" title="Month"><option value="0">January</option><option value="1">February</option><option value="2">March</option><option value="3">April</option><option value="4">May</option><option value="5">June</option><option value="6">July</option><option value="7">August</option><option value="8">September</option><option value="9">October</option><option value="10">November</option><option value="11">December</option></select><img src="/s.gif" alt="Next Month" class="calRight" onblur="this.className = \'calRight\';" onclick="DatePicker.datePicker.nextMonth();" onfocus="this.className = \'calRightOn\';" onmouseout="this.className = \'calRight\';" onmouseover="this.className = \'calRightOn\';" title="Next Month"/><select id="calYearPicker" name="calYearPicker" title="Year"><option value="2013">2013</option><option value="2014">2014</option><option value="2015">2015</option><option value="2016">2016</option><option value="2017">2017</option><option value="2018">2018</option><option value="2019">2019</option></select></div><div class="calBody"><table class="calDays" border="0" cellpadding="0" cellspacing="0" id="datePickerCalendar"><tr><TH class="dayOfWeek" scope="col">Sun</TH><TH class="dayOfWeek" scope="col">Mon</TH><TH class="dayOfWeek" scope="col">Tue</TH><TH class="dayOfWeek" scope="col">Wed</TH><TH class="dayOfWeek" scope="col">Thu</TH><TH class="dayOfWeek" scope="col">Fri</TH><TH class="dayOfWeek" scope="col">Sat</TH></tr><tr class="calRow" id="calRow1"><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td></tr><tr class="calRow" id="calRow2"><td onblur="hiOff(this);" ...;
{code}

Have anyone come across this issue?

Thanks

Hi,

 

I recently started to receive this error ("Unable to find valid certification path to requested target") in my Force.com IDE when I try to Refresh from Server or Deploy my code to my Sandbox. Can anyone please suggest me how this issue can be resolved?

 

 

Hi, There is a code that calls an external webservice but recently had issues (Concurrency limitation exceeded) when multiple users calling the webservice at the sametime. The method that makes the callout is not annotated as @future. Is it possible to bypass the concurrency limitation by annotating the callout method as @future.

 

Thanks,

Prashanth

Hi,

 

Recently we received a issue stating "Concurrent request limit exceeded". Basically the code calls the an external webservice and this limit execeeded error message came when the API was accessed by 30 users at the sametime.

 

I found out from the docs that for a production org maximum concurrent requests allowed is 25. But not sure if the limit is set at per user level or organization level.

 

1. Is the limit is at per user level or org level?

2. Can this limit be increased?

 

Thanks,

Hi,

We have an actionFunction to rerender different panels and components of the page. But recently we noticed that after rerendering the VF components the following html code is generated. This code generated is not related to any of the codes or scripts within my workspace.


{code:xml}
try{if(!document.getElementById('datePicker')){var bodyEl=document.body;var div=document.createElement('div');div.innerHTML='<div class="datePicker" id="datePicker"><div class="dateBar"><img src="/s.gif" alt="Previous Month" class="calLeft" onblur="this.className = \'calLeft\';" onclick="DatePicker.datePicker.prevMonth();" onfocus="this.className = \'calLeftOn\';" onmouseout="this.className = \'calLeft\';" onmouseover="this.className = \'calLeftOn\';" title="Previous Month"/><select id="calMonthPicker" name="calMonthPicker" title="Month"><option value="0">January</option><option value="1">February</option><option value="2">March</option><option value="3">April</option><option value="4">May</option><option value="5">June</option><option value="6">July</option><option value="7">August</option><option value="8">September</option><option value="9">October</option><option value="10">November</option><option value="11">December</option></select><img src="/s.gif" alt="Next Month" class="calRight" onblur="this.className = \'calRight\';" onclick="DatePicker.datePicker.nextMonth();" onfocus="this.className = \'calRightOn\';" onmouseout="this.className = \'calRight\';" onmouseover="this.className = \'calRightOn\';" title="Next Month"/><select id="calYearPicker" name="calYearPicker" title="Year"><option value="2013">2013</option><option value="2014">2014</option><option value="2015">2015</option><option value="2016">2016</option><option value="2017">2017</option><option value="2018">2018</option><option value="2019">2019</option></select></div><div class="calBody"><table class="calDays" border="0" cellpadding="0" cellspacing="0" id="datePickerCalendar"><tr><TH class="dayOfWeek" scope="col">Sun</TH><TH class="dayOfWeek" scope="col">Mon</TH><TH class="dayOfWeek" scope="col">Tue</TH><TH class="dayOfWeek" scope="col">Wed</TH><TH class="dayOfWeek" scope="col">Thu</TH><TH class="dayOfWeek" scope="col">Fri</TH><TH class="dayOfWeek" scope="col">Sat</TH></tr><tr class="calRow" id="calRow1"><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td><td onblur="hiOff(this);" onclick="DatePicker.datePicker.selectDate(this);" onfocus="hiOn(this);" onmouseout="hiOff(this);" onmouseover="hiOn(this);">&nbsp;</td></tr><tr class="calRow" id="calRow2"><td onblur="hiOff(this);" ...;
{code}

Have anyone come across this issue?

Thanks