sf-static/sql/modules/views/options/results.php

20 lines
766 B
PHP
Raw Normal View History

2023-02-28 18:21:07 +00:00
<fieldset style="margin: 10px">
<legend><?php echo __('Results'); ?></legend>
<table border="0" cellspacing="10" cellpadding="5" width="100%">
<tr><td valign="top">
<label for='res-max-count'><?php echo __('Maximum records to display in result set'); ?></label>
<input type='text' name='res-max-count' id='res-max-count' style="width:35px" value="<?php echo Options::get('res-max-count', MAX_RECORD_TO_DISPLAY); ?>" />
</td></tr>
<tr><td valign="top">
<input type='submit' id="save" value="<?php echo __('Save'); ?>" />
</td></tr>
</table>
</fieldset>
<script type="text/javascript" language="javascript">
$(function () {
$("#save").click(function () {
optionsSet( 'res-max-count', $('#res-max-count').val() );
});
});
</script>