Results 1 to 6 of 6

Thread: HOW TO clear display quick create panel?

  1. #1
    dekleinemedia is offline A Prolific Poster
    Join Date
    May 2009
    Location
    Netherlands
    Posts
    241

    Default HOW TO clear display quick create panel?

    Hi,

    I have the following question;

    Does someone know where i can customize the fields or even better not display the panel
    for quick create of "Projects" at all ?

    See screenshot.

    I don't want to display this quick create form anymore

    Please tell me how to do this, I appreciate.

    Thanks
    Attached Images Attached Images  
    Kind regards,

    De Kleine Media


    SugarCRM CE v.5.2.0h
    Windows platform
    MySQL v.5.1
    phpMyAdmin - 2.11.2.2
    Apache Server v.2.0

  2. #2
    crmbalah is offline A Prolific Poster
    Join Date
    Mar 2009
    Location
    chennai
    Posts
    418

    Default Re: HOW TO clear display quick create panel?

    Hi
    try to create view.sidequickcreate.php
    and place the empty disply function.

    sample
    Code:
    require_once('include/MVC/View/views/view.sidequickcreate.php');
    //require_once('custom/modules/Accounts/js/service.js');
    class Repor_ReportViewSidequickcreate extends ViewSidequickcreate {
            function Repor_ReportViewSidequickcreate(){
                    parent::ViewSidequickcreate();
            }
            function display() {
            	
            }
    }

  3. #3
    andopes's Avatar
    andopes is offline A Sugar Hero | Help Forum Moderator
    Join Date
    Jul 2006
    Location
    São Paulo - Brazil
    Posts
    8,335

    Default Re: HOW TO clear display quick create panel?

    This code should be the enough.

    PHP Code:
    <?php
    if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');

    require_once(
    'include/MVC/View/views/view.sidequickcreate.php');

    class 
    ProjectViewSidequickcreate extends ViewSidequickcreate {
        function 
    display() {
            return 
    '';
        }
    }
    ?>
    Cheers
    André Lopes
    DevToolKit / Project of the Month - June 2009
    Lampada Global Services- Open Source Solutions
    Avenida Ipiranga, 318
    Bloco B - CJ 1602
    São Paulo, SP 01046-010
    Brazil
    Office: +55 11 3237-3110
    Mobile: +55 11 7636-5859
    e-mail: andre@lampadaglobal.com

    Lampada Global delivers offshore software development and support services to customers around the world.
    Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.

    I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.

  4. #4
    dekleinemedia is offline A Prolific Poster
    Join Date
    May 2009
    Location
    Netherlands
    Posts
    241

    Default Re: HOW TO clear display quick create panel?

    Quote Originally Posted by andopes View Post
    This code should be the enough.

    PHP Code:
    <?php
    if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');

    require_once(
    'include/MVC/View/views/view.sidequickcreate.php');

    class 
    ProjectViewSidequickcreate extends ViewSidequickcreate {
        function 
    display() {
            return 
    '';
        }
    }
    ?>
    Cheers
    Thank you.
    What is the directory for saving this file?

    Much appreciate
    Kind regards,

    De Kleine Media


    SugarCRM CE v.5.2.0h
    Windows platform
    MySQL v.5.1
    phpMyAdmin - 2.11.2.2
    Apache Server v.2.0

  5. #5
    eescribano's Avatar
    eescribano is offline Senior Member
    Join Date
    Mar 2009
    Location
    Netherlands
    Posts
    85

    Default Re: HOW TO clear display quick create panel?

    You have to create that file in modules/{your_module}/views/view.sidequickcreate.php
    Elisabeth Escribano
    Webdeveloper

    MADCAP verademing in ict

    e.escribano@madcap.nl

    Schapedrift 89
    3371 JJ Hardinxveld-Giessendam
    Netherlands
    Tel 088 99 088 99
    Fax 088 99 088 98

    www.madcap.nl

  6. #6
    dekleinemedia is offline A Prolific Poster
    Join Date
    May 2009
    Location
    Netherlands
    Posts
    241

    Thumbs up Re: HOW TO clear display quick create panel?

    Quote Originally Posted by eescribano View Post
    You have to create that file in modules/{your_module}/views/view.sidequickcreate.php
    Great, it worked. Thank you all for solving this !
    Kind regards,

    De Kleine Media


    SugarCRM CE v.5.2.0h
    Windows platform
    MySQL v.5.1
    phpMyAdmin - 2.11.2.2
    Apache Server v.2.0

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Schedule Calls in Quick create wont display on Calendar
    By imrankha in forum Developer Help
    Replies: 0
    Last Post: 2009-01-15, 08:21 PM
  2. Replies: 1
    Last Post: 2008-09-18, 02:03 PM
  3. Modifying Quick Create Opportunity sub panel problem
    By Phazula in forum Developer Help
    Replies: 0
    Last Post: 2008-01-10, 11:30 AM
  4. Replies: 5
    Last Post: 2007-04-26, 07:43 PM
  5. Quick Question: Where to edit Project sub-panel layout?
    By andybesy in forum Developer Help
    Replies: 1
    Last Post: 2006-08-14, 12:49 PM

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
  •