• Anupama
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 8
    Questions
  • 9
    Replies

I have created a custom object.

For that object i have created a tab.

I have created a new site, and i want to host this tab.

Can this be done?

When i exported data using the apex dataloader, the look up fields are exported as Ids, If they have to exported as exact names, what should be the query.

My query returns the output as List<List<sobject>>.

When I tried to read it from VF page, it throws error
Unknown property 'VisualforceArrayList.Aircraft__c' 

 

Here is the sample code, that i have written.

 

<apex:dataTable value="{!SearchFlights}"
var="flight" styleClass="list" rendered="{!NOT(ISNULL(SearchFlights))}">
<apex:column >
<apex:facet name="header">Name</apex:facet>
<apex:outputText value="{!flight.Aircraft__c}"/>
</apex:column>
<apex:column >

 

Can anybody please explain me How to read List<List<sobject>> and display it on the on visualforce page.

Can we refer to 2 standard controllers in a single VF page?
Can we add custom action to Standard Controller in a Visual Force page?
I wan't make a join between two objects, and get the results. How this can be achieved?

I have to go for VisualForce page with custom controller and apex classes Or Can it be built as a standard page?

It would be great if any sample application is available.

When i exported data using the apex dataloader, the look up fields are exported as Ids, If they have to exported as exact names, what should be the query.

My query returns the output as List<List<sobject>>.

When I tried to read it from VF page, it throws error
Unknown property 'VisualforceArrayList.Aircraft__c' 

 

Here is the sample code, that i have written.

 

<apex:dataTable value="{!SearchFlights}"
var="flight" styleClass="list" rendered="{!NOT(ISNULL(SearchFlights))}">
<apex:column >
<apex:facet name="header">Name</apex:facet>
<apex:outputText value="{!flight.Aircraft__c}"/>
</apex:column>
<apex:column >

 

Can anybody please explain me How to read List<List<sobject>> and display it on the on visualforce page.

I wan't make a join between two objects, and get the results. How this can be achieved?

I have to go for VisualForce page with custom controller and apex classes Or Can it be built as a standard page?

It would be great if any sample application is available.