• Aurora Ganguly 10
  • NEWBIE
  • 40 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 48
    Questions
  • 37
    Replies
Hi
I have an general issue regarding the Dashboard , for opportunity  i am creating an funnel dashboard but the thing its showing in different format.
am sharing the image , User-added image

instead of 109M , I want the full amount in Rs.
Hi , 
I have a query on the currency field , in standard Account object there is Annual Revenue field .If i want to set the amount as 12,50,000 after saving its coming in different way like 1,250,000. How to modify this amount ? the comma is not coming properly . But from the company prfoile its already set as INR .

Plz reply .
Thanks .
Looking for your valuable revert.
Hi All,
Can anyone help me out in writing this test class for this apex class.
public with sharing class DeleteWithCheckboxController {
 
 @AuraEnabled
 public static list < contact > fetchContact() {
  list < contact > returnConList = new List < contact > ();
 
  List < contact > lstCon = [SELECT Name, firstName, LastName, Department, MobilePhone From contact LIMIT 50];
  // play for loop on lstCon and add each contact to returnConList List.
  for (contact c: lstCon) {
   returnConList.add(c);
  }
 // return the List of contacts
  return returnConList;
 }
 
 
 @AuraEnabled
 public static List < String > deleteRecords(List < String > lstRecordId) {
  // for store Error Messages  
  List < String > oErrorMsg = new List < String > ();
  // Query Records for delete where id in lstRecordId [which is pass from client side controller] 
  List < contact > lstDeleteRec = [select Id from contact where id IN: lstRecordId];
  
  // delte contact list with Database.DeleteResult[] database class.
  // It deletes some queried contacts using <samp class="codeph apex_code">Database.<span class="statement">delete</span></samp> 
  // with a false second parameter to allow partial processing of records on failure.
  // Next, it iterates through the results to determine whether the operation was successful or not
  // for each record. and check if delete contact successful so print msg on debug, 
  // else add error message to oErrorMsg List and return the list  
  Database.DeleteResult[] DR_Dels = Database.delete(lstDeleteRec, false);
  // Iterate through each returned result
  for (Database.DeleteResult dr: DR_Dels) {
   if (dr.isSuccess()) {
      system.debug('successful delete contact');
     // Operation was successful
   } else {
    // Operation failed, so get all errors   
    oErrorMsg.add('');
    for (Database.Error err: dr.getErrors()) {
     // add Error message to oErrorMsg list and return the list
     oErrorMsg.add(err.getStatusCode() + ': ' + err.getMessage());
    }
   }
  }
  return oErrorMsg;
 
 }
}
Looking for your help.
Aurora.
 
Hi , I have created a vf page , am sharing the preview of my page . I want to reduce the width between all the fields so that many more fields can be added .how to reduce the space between two fields .To make it come close . 

please advice on the same .User-added image
<apex:page Controller="AddmultipleAccountsController">
<apex:form >
<apex:pageBlock >
<apex:pageBlockTable value="{!listAccount}" var="acc">

<apex:column headerValue="Account Name">
<apex:inputField value="{!acc.Name}"/>
</apex:column>

<apex:column headerValue="Account Number">
<apex:inputField value="{!acc.AccountNumber}"/>
</apex:column>

<apex:column headerValue="Account Type">
<apex:inputField value="{!acc.Type}"/>
</apex:column>

<apex:column headerValue="Industry">
<apex:inputField value="{!acc.Industry}"/>
</apex:column>

</apex:pageBlockTable>
<apex:pageBlockButtons >

<apex:commandButton value="Add Accounts Row" action="{!addAccount}"/>
<apex:commandButton value="Save Accounts" action="{!saveAccount}"/>
</apex:pageBlockButtons>

</apex:pageBlock>
</apex:form>
</apex:page>

 
Hi All,
Actualy i want to know , i have a sandbox inside that under Develop am not getting the site . it is not there .but in my production org it is there .
What can be the issue of that ? How can i get  that site in sandbox inorder to create a site from sandbox . 
I raised a case also but didnt got any specific reply from them .  I need that site in my sandbox ,can any one tell how to enable that or how can i get that site in my sandbox .
Plz reply soon .
Hi All,
In the standard contact object I used the birthday field .So when i am creating a birthday for any person so I want that . say for any of the person the birthday is on 2nd july , so for that person how can i get to know in that particular day that this person has birthday . As i mean to say i want the notification aler that , this person has birthday today . 
How can i automate this .
Plz revert .
Regards Aurora
hi All,
I have created a vf page , same time with two question and 3 radio button , when i click on the first questions its showing the blue color but for the seconf question when i am clicking again the first question radio button is getting active , 
am sharing the image , u can see .
just unable to find the solnUser-added image
plz share ur reply
hi All,
I have made a oppurtunity page as vf page , but it is not responsive in simulator, all the fields are not aligned, 

just see the effect.
i have bootstrap also,User-added image

plz reply ,
Hi All,
am using Simple Shopping Cart Plugin With jQuery And Bootstrap - mycart, am sharing two links where i have dout , ,
the code is in this link : 1> http://www.jqueryscript.net/other/Simple-Shopping-Cart-Plugin-With-jQuery-Bootstrap-mycart.html
 the output is in this link : 2>http://www.jqueryscript.net/demo/Simple-Shopping-Cart-Plugin-With-jQuery-Bootstrap-mycart/#
My question is there are two button one is close and other is Checkout , onclick of checkout the cart is reseting to zero, i just want to know to do that for close button also, i mean to say onclick of close button, the cart should get refreshed ,how to do that changes
let me know yours reply ,
Thanks
Hi All, 
as you can see i used this code : '<input type="radio" name="type" value="exp"> <label>Bill to Room</label>'+
                                '<select>'+
                                '<option> --- </option>'+
                                '<option> Room 1 </option>'+
                                '<option> Room 2 </option>'+
                                '<option> Room 3 </option>'+
                                '<option> Room 4 </option>'+
                                '<option> Room 5 </option>'+
                                '<option> Room 6 </option>'+
                                
                                  '</select>'+
                                '<input type="radio" name="type" value="fresher"> PAY NOW'+
                                '<br/>'+
                                '<br/>'+
since i have two radio button , and fro this i used the script , this code: $(document).ready(function(){
                  
     $('select').hide();

     $('input').on('change', function(){
      $('select').show();
     })
});
but the thing is , i want when i will click on the first radio button it will populate the dropdown options and onclick of the second radio button it should hide, but its not happening, whenever i click on anyone of the radio button it is showing the dropdown menu , how to restrict that , can anyone share your views based on my coding parts
thanks