• Gm Chouhan
  • NEWBIE
  • 10 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 2
    Replies
Hi,

I want to add part of the visualforce page into side.com page template.
pls help me.
Hi,

I am using Data Tables and Forms in site.com page and i want to write custom CSS for Data Tables and Forms.
pls Help me
i want to access object filed into site.com>custom code.
hi,
i have a bootstrap theme and want to convert all web page into site.com
can anybody help me what is the processor i will follw.
pls help me..
hi,
i want to create web page on side.com with bootstarp like responsive themes.
can you help me how to create web page with bootstarp.
pls help me....
hi,
i have create list in apex and i want to list value into java script array variable.
pls help me.....
Hi....
i have upload same image in static resource and i want shuffle those images randomly after some time.
pls help....
i have writed 2 batch apex
--------------------------
1 st
-------------------
global class AccountBatchApex1 implements Database.Batchable<sObject>{
    global Database.QueryLocator start(Database.BatchableContext bc)
    {
        System.debug('Account Batch Apex1 Staring...........111111111111111')
        String query='SELECT Phone FROM Account limit 1 order by desc';
        return Database.getQueryLocator(query);
    }
    global void execute(Database.BatchableContext bc,List<Account> scope){
        for(Account a:scope){
            a.phone+=1;  
        }
        update scope;
    }
    global void finish(Database.BatchableContext bc){
        System.debug('Ok Account Batch Apex1 fineshed.........11111111111111111');
        AccountBatchApex2 aba2 = new AccountBatchApex2();
        Database.executeBatch(aba2);
    }

}
-----------------------------------
2nd
---------------------------
global class AccountBatchApex2 implements Database.Batchable<sObject>{
    global Database.QueryLocator start(Database.BatchableContext bc)
    {
        System.debug('Account Batch Apex2 Staring...........2222222222222222')
        String query='SELECT name, Phone FROM Account limit 1 order by desc';
        return Database.getQueryLocator(query);
    }
    global void execute(Database.BatchableContext bc,List<Account> scope){
        for(Account a:scope){
            a.phone+=1;              
        }
        
        update scope;
      
    }
    global void finish(Database.BatchableContext bc){
        System.debug('OK Account Batch Apex 2 finished.........2222222222');
        AccountBatchApex1 aba1 = new AccountBatchApex1();
        Database.executeBatch(aba1);
    }

}
--------------------------
phone no = 10
but  no method execution......pls help
hi,
i want to create UI with slideshow  in VF page
please help me....

hi,
i have create list in apex and i want to list value into java script array variable.
pls help me.....
hi,
i have a bootstrap theme and want to convert all web page into site.com
can anybody help me what is the processor i will follw.
pls help me..
hi,
i want to create web page on side.com with bootstarp like responsive themes.
can you help me how to create web page with bootstarp.
pls help me....