General
45 results found
-
PDF export on commercial paid version and the demo on your site both have a file/font issue.
PDF export on commercial paid version and the demo on your site both have a file/font issue.
Can't open file /Sites/localhost/phpGridx/server/pdftable/font/unifont/DejaVuSansCondensed.ttf
1 vote -
Sortable, searchable documentation
Create a phpGrid containing links to your documentation with sortable and searchable fields like: Function Name, Type, Keywords, Description, version#, availability (lite or paid versions).
I always have trouble finding what I'm looking for.
1 vote -
"enable_persist_state" not remember "Records per page" in localStorage
"enablepersiststate" not remember "Records per page" in localStorage.
When the user changes the number of records displayed on the phpGrid page, phpGrid does not remember this value in localStorage.
E.g:
25 records are displayed per page. In total, we have 26 records (2 pages). We stand on the last record and change the value of "Records per page" to 10 (we have 3 pages and we stand on the 3rd page). We load another page of our application, and then return to the page with 26 records. phpGrid will not load data because the last page saved in…1 vote -
Advanced Search Date Comparison
Is it possible to perform an advanced search Date Comparison including hours:minutes:seconds? I can't search a date/time field (yyyy-mm-dd hh:ii:ss) through datePick
1 vote -
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 -
Working with Complex Query
Working with Complex Query but search function not working..
5 votes -
2 votes
-
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 -
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 -
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 -
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 -
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 -
Oracle Primary Key must be in UPPER CASE
please add to your documentation that the constructor for accessing an ORACLE table must have the Key field in UPPER CASE...
Your documentation:
$dg = new C_DataGrid("SELECT * FROM emp", array("empno"), "emp");has to be:
$dg = new C_DataGrid("SELECT * FROM emp", array("EMPNO"), "emp");otherwise you get this error:
Notice: Undefined index: myid in C:\xampp\htdocs\phpGridEnterprise\server\classes\clNotice: Undefined index: empno in C:\xampp\htdocs\phpGridEnterprise\server\classes\cls_util.php on line 68It took me a long time to figure this out
1 vote -
8 votes
-
27 votes
In planning.. MySQL only
-
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 -
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 -
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 -
Column type email XSS vulnerable
Starting version 7.2.6 XSS fix does not cover column type email. This type just gets formated. There is a walk around in BEFORESUBMIT but we would like to see this treated in future releases.
1 vote -
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
- Don't see your idea?