Results 1 to 3 of 3

Thread: Add assign to n Desc in calender when scheduling call/meeting

  1. #1
    abhax's Avatar
    abhax is offline Senior Member
    Join Date
    Jun 2010
    Location
    India
    Posts
    65

    Unhappy Add assign to n Desc in calender when scheduling call/meeting

    Hi people,

    Need some help.
    I need to add the Assign to and Description to the calender when we schedule a meeting/call.
    I have been through a loads of post but all i can found out is that templates_calender.php need to be edited.

    But im not able to figure out where i need to make the changes.
    and once the fields are added would they be saved also?

    or do we need to make some changes for them to be saved too?


    Please help!!!
    If It Is To Be, It Is Up To Me

  2. #2
    abhax's Avatar
    abhax is offline Senior Member
    Join Date
    Jun 2010
    Location
    India
    Posts
    65

    Smile Re: Add assign to n Desc in calender when scheduling call/meeting

    Hey people,


    Plz help on this issue, has been struggling with this issue for days now...
    Need some help!
    If It Is To Be, It Is Up To Me

  3. #3
    abhax's Avatar
    abhax is offline Senior Member
    Join Date
    Jun 2010
    Location
    India
    Posts
    65

    Smile Re: Add assign to n Desc in calender when scheduling call/meeting

    Hey people,

    Have made the changes desired but they are
    not upgrade-safe
    .
    But still some work is done.

    For all these who might have the same issue here some details that might help you out.

    We need manipulate and add the fields so that they are reflected in the calendar.
    /modules/Calls/CallFormBase.php

    Line Number: 115

    if you add anything here that would be reflected in the calender module too.

    HTML Code:
    <tr>
        <td colspan="2">
        	<span class="dataLabel">Description: </span>&nbsp;
        		<tr><td><textarea name='desc'> </textarea></td></tr>
        </td>
    </tr>
    This textarea for description will appear in the calendar module.
    Now when Schedule Call is select

    in the CallBaseForm.php
    function handleSave () this function will be called.
    near line number : 405 add
    PHP Code:
    $focus->description $_REQUEST['desc']; 
    This same needs to be done when schedule meeting but in
    modules/Meetings/MeetingBaseForm.php

    and it near line number: 332
    PHP Code:
    $focus->description $_REQUEST['desc']; 

    Hope This is helpful!!!
    If It Is To Be, It Is Up To Me

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 0
    Last Post: 2009-08-17, 12:16 AM
  2. How to get the meeting in outlook calender
    By banish in forum Developer Help
    Replies: 2
    Last Post: 2009-03-06, 11:54 AM
  3. Assign Call/Meeting only to assigned user
    By ElChef in forum Developer Help
    Replies: 3
    Last Post: 2006-06-15, 03:23 PM
  4. Longer call.meeting desc
    By colins in forum Feature Requests
    Replies: 4
    Last Post: 2004-08-25, 06:39 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •