/
var
/
www
/
html
/
sugar9
/
include
/
Dashlets
/
Upload File
HOME
{* /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ *} <div> <form action='index.php' id='configure_{$id}' method='post' onSubmit='SUGAR.mySugar.setChooser(); return SUGAR.dashlets.postForm("configure_{$id}", SUGAR.mySugar.uncoverPage);'> {sugar_csrf_form_token} <input type='hidden' name='id' value='{$id}'> <input type='hidden' name='module' value='Home'> <input type='hidden' name='action' value='ConfigureDashlet'> <input type='hidden' name='configure' value='true'> <input type='hidden' name='to_pdf' value='true'> <input type='hidden' id='displayColumnsDef' name='displayColumnsDef' value=''> <input type='hidden' id='hideTabsDef' name='hideTabsDef' value=''> <input type='hidden' id='dashletType' name='dashletType' value='' /> <table cellpadding="0" cellspacing="0" border="0" width="100%" class="edit view"> <tr> <td scope='row'colspan='4' align='left'> <h2>{$strings.general}</h2> </td> </tr> <tr> <td scope='row'> {$strings.title} </td> <td colspan='3'> <input type='text' name='dashletTitle' value='{$dashletTitle}'> </td> </tr> <tr> <td scope='row'> {$strings.displayRows} </td> <td{if !$isRefreshable} colspan='3'{/if}> <select name='displayRows'> {html_options values=$displayRowOptions output=$displayRowOptions selected=$displayRowSelect} </select> </td> {if $isRefreshable} <td scope='row'> {$strings.autoRefresh} </td> <td> <select name='autoRefresh'> {html_options options=$autoRefreshOptions selected=$autoRefreshSelect} </select> </td> {/if} </tr> <tr> <td colspan='4' align='center'> <table border='0' cellpadding='0' cellspacing='0'> <tr><td> {$columnChooser} </td> </tr></table> </td> </tr> {if $showMyItemsOnly || !empty($searchFields)} <tr> <td scope='row'colspan='4' align='left'> <br> <h2>{$strings.filters}</h2> </td> </tr> {if $showMyItemsOnly} <tr> <td scope='row'> {$strings.myItems} </td> <td> <input type='checkbox' {if $myItemsOnly == 'true'}checked{/if} name='myItemsOnly' value='true'> </td> </tr> {/if} <tr> {foreach name=searchIteration from=$searchFields key=name item=params} <td scope='row' valign='top'> {$params.label} </td> <td valign='top' style='padding-bottom: 5px'> {$params.input} </td> {if ($smarty.foreach.searchIteration.iteration is even) and $smarty.foreach.searchIteration.iteration != $smarty.foreach.searchIteration.last} </tr><tr> {/if} {/foreach} </tr> {/if} <tr> <td colspan='4' align='right'> <input type='submit' class='button' value='{$strings.save}'> {if $showClearButton} <input type='submit' class='button' value='{$strings.clear}' onclick='SUGAR.searchForm.clear_form(this.form,["dashletTitle","displayRows","autoRefresh"]);return false;'> {/if} </td> </tr> </table> </form> </div>