• pa_sfdc
  • NEWBIE
  • 25 Points
  • Member since 2009

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

Is there a easy way to show pop up from a visual force page, without linking it to another visual force page.

I want to show some information .

 

I have seen example of yahoo model dialogue box.

 

I am in process of creating  a 100% native application, I do nt want to call to any external js libraries.

 

 

I have a vf page where I am displaying values from a List build from an wrapper class.

 

Since all of the values are coming from the wrapper class so I am not able to use soObject feilds and I am displaying the output using <apex : OutputText>

 

e.g. qty - 1000000.0 needs to be displayed as 1,000,000.00

 

<apex:PageBlockTable value="{!AvailableInventory}" var="AI" width="100%" > <apex:column headerValue="Warehouse"> <apex:outputText value="{!AI.WarehouseName }"/> </apex:column> <apex:column headerValue="Reserved "> <apex:outputText value="{!AI.ReservedQty }"/> </apex:column> <apex:PageBlockTable >

 

 

controller code -

public List<cProduct> AvailableInventory = new List<cProduct>{}; public List<cProduct> getAvailableInventoryChild() { return AvailableInventoryChild; } public class cProduct { public id prodInvId {get; set;} public String prodInvName {get; set;} public String OppProdName {get; set;} public String WarehouseName {get; set;} public Double ReservedQty {get; set;} public String color {get; set;} public cProduct( id PIId, String prodInv, String OppProd, String Warehouse, Double Reserved, String InvColor) { prodInvId = PIId; prodInvName = prodInv; OppProdName = OppProd; ProductReference = ProdId; WarehouseName = Warehouse; ReservedQty = Reserved; color = InvColor; } } public List<cProduct> product { get { if(product==null) product=new List<cProduct>(); return product; } set; }

 

 

thanks

 

Is there a easy way to show pop up from a visual force page, without linking it to another visual force page.

I want to show some information .

 

I have seen example of yahoo model dialogue box.

 

I am in process of creating  a 100% native application, I do nt want to call to any external js libraries.

 

 

I have a vf page where I am displaying values from a List build from an wrapper class.

 

Since all of the values are coming from the wrapper class so I am not able to use soObject feilds and I am displaying the output using <apex : OutputText>

 

e.g. qty - 1000000.0 needs to be displayed as 1,000,000.00

 

<apex:PageBlockTable value="{!AvailableInventory}" var="AI" width="100%" > <apex:column headerValue="Warehouse"> <apex:outputText value="{!AI.WarehouseName }"/> </apex:column> <apex:column headerValue="Reserved "> <apex:outputText value="{!AI.ReservedQty }"/> </apex:column> <apex:PageBlockTable >

 

 

controller code -

public List<cProduct> AvailableInventory = new List<cProduct>{}; public List<cProduct> getAvailableInventoryChild() { return AvailableInventoryChild; } public class cProduct { public id prodInvId {get; set;} public String prodInvName {get; set;} public String OppProdName {get; set;} public String WarehouseName {get; set;} public Double ReservedQty {get; set;} public String color {get; set;} public cProduct( id PIId, String prodInv, String OppProd, String Warehouse, Double Reserved, String InvColor) { prodInvId = PIId; prodInvName = prodInv; OppProdName = OppProd; ProductReference = ProdId; WarehouseName = Warehouse; ReservedQty = Reserved; color = InvColor; } } public List<cProduct> product { get { if(product==null) product=new List<cProduct>(); return product; } set; }

 

 

thanks

 

We are rendering a page as the pdf in visualforce.

 

As a part of an interface, this pdf needs to be sent a response to a web service. 

 

Any pointers on how this can be done?

 

are there any salesforce.com specific restrictions or implementation considerations that need to be thought about before implementing the interface?

 

 

 

Thanks a lot,

Pooja