Phpgrid and MDBoostrap in one Page

QuestionsPhpgrid and MDBoostrap in one Page
Gerd Huber asked 4 years ago

Hallo,

i want to put both in one html-page. but after do so, the filterfields for drop-Downs where not being displayed an more.

MD Bootstrap 5-minute Quick Start

files

https://gist.github.com/gerdhuber/e0886f5ef43dce8d81ade602ba9de2e1

 

THank you

Gerd

4 Answers
Peter Broekman answered 4 years ago

sequence of CSS files, put bootstaps before the Jquery ones?

Abu Ghufran Staff answered 4 years ago

Hello,

Demo code: https://gist.github.com/20874faa3ed09986150501fb145e4705

Screenshot:

_________________________
Abu Ghufran - Dev Team
Grid 4 PHP Framework
 
Gerd Huber answered 4 years ago

Hallo Abu,

 

thank you for the solution, its works fine, but please integrate a field like this example:

 

$col = array();
$col[“title”] = “Musikart”; // caption of column, can use HTML tags too
$col[“name”] = “dt_musikart_text”; // grid column name, same as db field or alias from sql
$col[“width”] = “70”; // width on grid
$col[“editable”] = false;
$col[“search”] = true;
$col[“dbname”] = “hhc_titel.fk_titel_musikart”;

# fetch data from database, with alias k for key, v for value
$client_lookup = $g->get_dropdown_values(“select distinct id_musikart as k, dt_musikart_text as v from hhc_musikart order by dt_musikart_sort”);

# these 3 lines will make dropdown in search autofilter
$col[“stype”] = “select”;
// blank row, then all db values – ; is record separator, : is key-value separator
$col[“searchoptions”] = array(“value” => “:;”.$client_lookup);
$cols[] = $col;

You don’t see any filter for this field, please try
gist:f51390b73e4c117dea15ca6376e33a27
I am using phpgrid\demos\search\autofilter from the demos folder.

Regards and thank you

Gerd

Abu Ghufran Staff answered 4 years ago

Your gist code is working as expected. Please share with screenshot explaining your issue.

_________________________
Abu Ghufran - Dev Team
Grid 4 PHP Framework
 
Your Answer

14 + 7 =

Login with your Social Id:

OR, enter

Attach code here and paste link in question.
Attach screenshot here and paste link in question.



How useful was this discussion?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate it.

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?