• Tapasvini
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 21
    Questions
  • 22
    Replies

I want to create a cutom report but There no button for creating custom report in reports. I am using developer edition. I am using develper edition.

I have created chart using visualforce page and I need to display it in dashboard. Please can anyone give me idea to achieve this??

thanks.

I want to format the date and display it into vf page.my code is:

 

<script>
function DynamicDatePicker(d_id)
{
DatePicker.pickDate(false,d_id.id,false);
}
</script>

 

<apex:inputText id="FromDate" value="{!FromDate}" onfocus="DynamicDatePicker(this);" onchange="checkDateFormatt(this.id);" size="20" disabled="false" style="width:150px;"/>

 

title: {!FromDate}

 

class:

 public Date FromDate { get; set; }

 

I am getting the value is:Fri Sep 21 00:00:00 GMT 2012

but I want it like 09/21/2012.

 

I have tried format method but it doesnt work. So, can anyone give me the solution.

Thanks.

I want to create bubble chart like this: How can I code it??

I want add the values from diff. list into single map.one is integer list and other is string list like:

List1: mapstr :my, hemant, free, Adult Content Or Keyord - my wife, Adult Content Or Keyword - ,my ,wife ,say ,try, Adult Content Or Keyword - ,my ,wife, my my, Adult Content Or mywife, asas

List2: mapint :[11, 6, 6, 1, 1, 1, 1, 1, 2]

but when I insert it into map it doesn't take all values.both list are of same size. and list contains only 4 or 5 values.

my code is :

public List<String> gettotaldetail() {
for(integer n=0;n<mapstr.size();n++)
{
String kw=mapstr.get(n);
integer cow=mapint.get(n);
map1.put(cow,kw);
}
str1=map1.values();
return str1;
}

what should be added to get the full list in map?

I want to create a circle using apex. How can I code for that?

I want to create table like below. how I can code for it?

I want migrate the data and files of chatter from one org to another org. In wahich way thie can be achieved?

I have a sample data and based on that I want to create a simple heat map that has color representation.How can I do that?