• Deepak Chouhan
  • NEWBIE
  • 35 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 29
    Questions
  • 14
    Replies
Hi,
   I have created visualforce page with standard object (account). my question is whenever i click the edit button on detail page i want to disabled some required field and user can't edit those field.
pls help me out.
 
Hi,
I have create a picklist and fieldset. i want to control fieldset by picklist without page reload when i will change the picklist value fieldset must be change.

pls help me out
Hi,
I have create picklist and multipicklist. multipicklist dependent to picklist. in my project picklist showing in button and multipicklist in checkbox format. how to checkbox box dependable to button click event.
pls help me out.
 
Hi,

i have create a page into Lightning. State and Country Picklist value visible into lightning picklist and select option stored into custom objects.
pls help me out.
 
 
Hi,

i have created web page on Visualfoce. this page associated to the public site.
when i enter some data into model visible only public page. it not visible recent item and sobject but it is exist in sobject.
i want see all sobject data.
Hi,

I am createing bootstrap web page into VF page. i have add some animation and boostrap property. but it is not work proper way.
i have add related css and js file into static resorce. 
pls anybody can help me.....

Regard's

Deepak
Hi,

I have created sObjects for person information and that sObjects content Name,phone,mobile,address etc.
In a VF page we are useing some controller but into site.com how to use controller i dont know.
I have writen custom code for site.com page template and I want to store data by the help of submit button into site.com page as well as fetch data into table section.
it very urgent for me So pls help me. can you provide some example.
hi,
i am using
                <apex:repeat value="{!item_Details}" var="item">
                    <apex:outputPanel styleClass="op_Item_Details" >                   
                        <apex:outputField value="{!item.Image__c}"/>                   
                        <apex:outputLabel value="{!item.Product_Name__c}"/>                      
                        <apex:outputLabel value="{!item.Price__c}" id="me"/> /-                       
                     <apex:commandButton value="Item Details" action="{!show_Item_Description}" rerender="item_Popup" style="width:100px;"/>
                    </apex:outputPanel>
                </apex:repeat>

and i want to assing apex variable to above current product item.
i have used actionfunction for onclick event on commandbutton but it's not working.
<apex:repeat value="{!product}" var="p">
            <apex:outputPanel styleClass="panel">
            <apex:image value="{!p.Image__c}"/>   <!--<apex:image url="{!p.Image__c}"/>                     -->
            <apex:outputLabel value="{!p.Product_Name__c}"/>
            <apex:outputLabel value="{!p.Price__c}"/>
            </apex:outputPanel>
 </apex:repeat>
------------------------------------------------
apex:code
------------------------------------------
public PageReference gosearch() {
        product= [ SELECT Image__c,Price__c,Product_Name__c FROM OProduct__c WHERE Product_Type__c like :('%'+search+'%') ];                               
        return null;
    }

    public String search {get;set;}
    public List<OProduct__c> product{set;get;}