• Nick.ax106
  • NEWBIE
  • 0 Points
  • Member since 2004

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 5
    Replies
I created an inline S-Control using the listview template it works great in firefox but errors in IE at the
document.getElementById("list-view-table").innerHTML = sb.toString(); line.

I have done some reading and it looks like IE doesn't implement this according to the standard.

Does anyone have a workaround for this?

Thanks,

Nick


Hi,

I'm trying to create a VF page that will display a budget line items in an easily editable format. So far I have been able to display both the budget information at the top of the page and the associated line items below in a pageBlockTable.

Code:
<apex:page Standardcontroller="Budget__c">
<apex:detail relatedList="false"/>
   <apex:pageBlock title="Budget Line Items">
       <apex:pageBlockTable value="{!Budget__c.BudgetLine__r}" var="lineItem">
        <apex:column value="{!lineItem.Name}"/>
        <apex:column value="{!lineItem.Cost_Code__c}"/>
        <apex:column value="{!lineItem.Category__c}"/>
        <apex:column value="{!lineItem.Sales_Budget__c}" />
        <apex:column value="{!lineItem.PM_Initial_Projection__c}"/>
        <apex:column value="{!lineItem.Active_Budget__c}"/>
      </apex:pageBlockTable>
   </apex:pageBlock>
</apex:page>

 I want the end user to be able to double click on a field in the "Budget Line Items" table, edit it and then have the field save (similar functionality to the Enhanced List View). I've been digging through the documentation and haven't found the best way of going about this. Any suggestions on implementing ondblclick or onRowclick for a table?


Thanks!

Can anyone supply an ETA for the new Force.com IDE that integrates with Eclipse.

It appears the current version does not work with Summer08 and the new 13.0 API.

This is the error:





Message Edited by TehNrd on 05-18-2008 08:47 AM
I created an inline S-Control using the listview template it works great in firefox but errors in IE at the
document.getElementById("list-view-table").innerHTML = sb.toString(); line.

I have done some reading and it looks like IE doesn't implement this according to the standard.

Does anyone have a workaround for this?

Thanks,

Nick


I need to create a report that shows the average turnaround time in hours for all open cases. The challenge is that we don't provide support 24x7 and the time we're not here shouldn't be included in the turnaround time calculation. Basic requirements:

- If the case was created after 7pm, count it as arriving at 7am the next day.
- If the case came in on Saturday or Sunday, count it as arriving at 7am on Monday.
- The turnaround time is the average time across open cases.
- The report is dynamic so that the turnaround time is calculated in real-time each time the report is run.

Is there a way to do this using calculated fields? Is there other code out there that may help.

Thanks.
  • September 19, 2005
  • Like
  • 0