General
45 results found
-
Page-Reload-Persistent Search
It would be nice if there would be an option to make search/sort reload persistent ...
We got several Systems where the Users switch between different Lists / Pages ... and they have to execute the same searches again & again & again when going back and forth...So it would be really cool if the Search could be Page Reload Persistent ... ;-)
thx
Andreas Schnederle-Wagner40 votes -
27 votes
In planning.. MySQL only
-
Multiple file upload
What about phpGrid render a multi file upload via AJAX for video and image gallery with a batch file uploader component? Would be a blast :)
22 votes -
enable search function for detail grids of masterdetails
I'd like to have the ability to search/filter records in the subgrid/detailgrid of a set_masterdetail. Currently, detail grids dont have the ability to search for records.
13 votes -
a formun where users can exchange knowledge and help those with problems with their coding
A forum where users ask and share knowledge with each other would be most helpful. It has been frustrating, very frustrating trying to resolve several issues and getting nowhere.
13 votes -
AUTO-save on the navigating-keys in EDIT-mode of an form
I would suggest some kind of AUTO-save on the navigating keys while editing an form. So, whenever you change a value and you hit the nav-key it's automaticly saved (2 actions). Until now you edit a value, hit submit and then you hit a nav-key (3 actions)
12 votes -
Need the ability to receive any errors when writing to database
Need to be able to receive any errors that may occur when interfacing to the database.
9 votes -
New free-jqGrid and Jquery
Hello developers of phpgrid,
I've noticed the current version of free-jqgrid in phpgrid is 4.13.6. The newest version on github however is 4.15.3. Are there ideas to upgrade to that function?
Also the current jquery is 2.1.4, while the newest is 3.3.1, are there ideas to upgrade this too?
Thanks,
Sander
9 votes -
Show me how to do a SELECT COUNT for the grid's SQL
I'm new to phpGrid and also relatively new to PHP. Is there a way to do a SELECT COUNT in the driving SQL? If so, I'm not seeing anything on here that can help
8 votes -
8 votes
-
numbers do not sort correctly when using local array data source
Numbers do not sort correctly when using local array data source. Using the source below you'll notice that the numbers do not sort correctly. Values less than 10 do not sort above numbers greater than 10.
$gridData = array();
foreach( $players as $playerID => $playerName )
{
$floatNum = mt_rand(0, 10000) / 100;$data = array(); $data['Number'] = $floatNum; array_push($gridData, $data); } $dg = new C_DataGrid($gridData); $dg->enable_search(true); $dg->set_caption('Stats'); $dg->set_row_color('#2F3C4E', 'transparent', 'transparent'); $dg->set_pagesize( sizeof($gridData) ); $dg->set_col_format('Number', 'number', array("thousandsSeparator" => ",", "decimalSeparator" => ".", "decimalPlaces" => '2', "defaultValue" => '0.00')); $dg->enable_rownumbers(true); $dg->set_dimension(950, '100%'); $dg->display();
8 votes -
Notifications....
Whenever the datagrid is updated there are a number of people who would like to be notified that changes have taken place.
I think that it would be useful if people on a mailing list (For example) would be notified that changes (Not necessarily precise) have taken place to the grid. Obviously the more precise the better but anything is better than nothing
Regards Paul8 votes -
customize Update, Edit and Delete Queries So that Data History Can be maintained
I would like to Customise the Update, Edit and Delete Queries So that Data History Can be maintained, Using a Data Status.
I.E when editing a Data, Instead of Direct Editing, I Want to Update the Old Data as Data Status INACTIVE and Insert a Copy of the Old Data with Edited Component With data Status Active so that A history of all edits can be Kept in the DB. Once this Part is Ready i am Gonna Purchase a License from you.
6 votes -
Detail your export documentation
On your documentation to enable export ($dg->enable_export('PDF');) you show a live example where the user can pick the format he wants to export the grid in but you don't give the code for that.
(http://phpgrid.com/example/export-datagrid-to-excel-or-html/)I managed to recreate the code and made my own script:
Export:
<select id="export" onchange="exportfn()">
<option value="">Pick your format</option>
<option value="CSV">Excel</option>
<option value="PDF">PDF</option>
<option value="HTML">Webpage</option>
</select><script>
function exportfn() {
var x = document.getElementById("export").value;
window.location.href = './export.php?gn=Clears&export_type=' + x;
}
</script>But it would be nicer to have it on the footer like you had it on the live example.
Could you add…
5 votes -
Working with Complex Query
Working with Complex Query but search function not working..
5 votes -
In set_col_edittype() you shouldt configure enum type columns to be "select" type with each enum listed in a pulldown item by default
Enum type columns currently by default just look like text fields and anybody could just type some invalid value in there and mess things up. If by default it would just show a pulldown list of options things would be easier and less error prone, ya know?
5 votes -
Search Option for "Beginning" not only search if the input is in the colum
Colum:
AZD
ZAD
AZDSearch -> Returns by Input "Z"
all of them
Search with option "Beginning" with Input "Z" will return
"ZAD"
4 votes -
In form only mode - redirect_after_cancel
In form only mode - redirectaftercancel - currently we can redirect after submit - but on cancel we are left with a blnak page
4 votes -
Toggle integrated search to always on (2 methods)
There are actually two ways to do this: as posted on this site you can add the following just before the close of body tag:
<script type="text/javascript">
$(function() {
var grid = jQuery("#TABLE_NAME");
grid[0].toggleToolbar();
});
</script>OR
comment out the following line in cls_datagrid.php. I like this method because I want to show this more times than I don't, so it is easier. Basically you are deciding the default behavior of the integrated search: leaving this un-commented makes it hidden by default which requires you to use script to toggle it on OR you can comment it out so it…
4 votes -
CSRF protect phpGrid
We believe phpGrid needs to have CSRF protection. For the time being we are setting token in cls_datagrid.php and controlling it through edit.php and data.php. Would like to see this in future releases.
4 votes
- Don't see your idea?