![]() |
HJB 8/21/2014 |
http://xlinesoft.com/livedemo/web/login.php |
M
|
mfriend author 8/21/2014 |
http://xlinesoft.com/livedemo/web/login.php This generally sounds to be a job for the PHPRunner built-in CREATE A REPORT feature where your wished FILTERING is done by using the ADVANCED SEARCH button, here to select the appropriate stackyard. Above URL demo talks about PHPRunner's Enterprise Version Add-On called "Web Reports" which could be an alternative.
|
![]() |
HJB 8/22/2014 |
Matthew, |
M
|
mfriend author 8/22/2014 |
Matthew, fully got your point under the keyword "targeting the most error-free usability". Rather than to overthrow your steps already taken, I think, it's worth to start from the user's login. Example: After user login, the drop down selection is filtered by multiple chained drop down... Stay tuned - walk2fly
|
M
|
mfriend author 8/26/2014 |
I guess since no one has said how to filter a field by two parent fields this is not possible in PHPRunner? |
![]() |
Sergey Kornilov admin 8/27/2014 |
PHPRunner doesn't have an option to filter dropdown list by two parent controls. select ID, Make, Model, concat(Make,Model) as MakeModel from Cars
select ID, concat(Make,Model) as MakeModel, YearOfMake from Cars |
M
|
mfriend author 9/25/2014 |
PHPRunner doesn't have an option to filter dropdown list by two parent controls. However it's fairly easy to implement since PHPRunner allows you to use custom view as a source for dropdown box. I will explain from standard Cars database point of view. First dropdown box is Make, second dropdown box is Model, third one is YearOfMake. Imagine that Model field is not unique and cannot be used to filter YearOfMake values. However Make+Model combination is unique and using a custom view as a source for Model dropdown box you can handle this. Here is the sample SQL query: select ID, Make, Model, concat(Make,Model) as MakeModel from Cars
select ID, concat(Make,Model) as MakeModel, YearOfMake from Cars
|
![]() |
Sergey Kornilov admin 9/26/2014 |
I have absolutely no idea how primary keys are relevant here. You do not need primary keys at all to build dependent dropdowns. You can link them by any single field or by concatenating multiple fields into single one. |
M
|
mfriend author 10/4/2014 |
I have absolutely no idea how primary keys are relevant here. You do not need primary keys at all to build dependent dropdowns. You can link them by any single field or by concatenating multiple fields into single one.
|