• Sowjanya
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 5
    Replies

HI,

 

Jquery Delay function is not working in Firefox 15 .

 

My code is below:

j$.delay(2000,batchstatus(batchprocessid,"Yes"));

 

Can anyone help me please

 

Thanks in Advance

Venkata Sowjanya

Hi,

 

I am uploading a csv file in VF page.

 

I want to split the uploaded file into smaller parts and then parse.

 

Can anyone let me know how to split a file into smaller parts.

 

Thanks in Advance!!

Venkata Sowjanya

 

 

Hi,

 

I am uploading a file through HTML5. File size differs from outside to browser. 

 

I my case, the file size outside is 4.39 MB. When i upload and check in Chrome or Firefox, the file size displays as 4.6 MB

 

Can anyone let me know how to make the browser to take the exact size of the file.

 

Thanks in Advance

Sowjanya

Hi... 

 

I am new to salesforce. I was working on the tutorial of Warehouse. In Tutorial 11 is said to download Flex for Force.com can some body explain me the procedure for doing the same as i have downloaded Flex Toolkit, Flash Builder, Flex Builder, Air. Do i need to download something more. If yes then what and if not then please guide me through this problem thankx

Work Performed is Child Object.

Case is Parent Object.

After Saving the Work Performed (Related List) in Case Detail Page. How to redirect the Case3. Page???

 

 

  • September 20, 2012
  • Like
  • 0

hii everyone

anybody who is having knowledge of google charts and javascript remoting

then please le me know

i want some help

please message me if someone is having knowledge of these

  • September 20, 2012
  • Like
  • 0

Hi,

 

I am uploading a csv file in VF page.

 

I want to split the uploaded file into smaller parts and then parse.

 

Can anyone let me know how to split a file into smaller parts.

 

Thanks in Advance!!

Venkata Sowjanya

 

 

i am trying to create a trigger from lead after update. The should create a task and update 2 task field.

 

trigger Lead_taskreminder_update on Lead (after update)
{
  list<Task> lNewTasks = new list<Task>();
  for(integer i=0; i<trigger.new.size(); i++)
  {
     lNewTasks.add (MyTask = new Task(
       Subject = 'Please call this lead',
       WhoID = trigger.new[i].id,
       ReminderDateTime = Lead.Call_Back_Date_Time__c,
       Description = Lead.Customer_Notes__c ));
   }
   insert lNewTasks;
}

 

I am getting following error

 Error: Compile Error: Variable does not exist: MyTask at line 6 column 21 

 

I am not very good at coding but just trying to learn on apex coding. Please help.