Search found 75 matches
- 2021-10-02 02:44
- Forum: Tips And Tricks
- Topic: implement update_calc_fields in import csv
- Replies: 0
- Views: 1031
implement update_calc_fields in import csv
How to implement update_calc_fields function in import-csv.php so that every record imported would have calculated field run automatically?
- 2021-09-28 08:11
- Forum: Advanced Customizations > Others
- Topic: URL length limitation to filter records
- Replies: 9
- Views: 2693
Re: URL length limitation to filter records
Thank you for your kind suggestion.
- 2021-09-25 11:39
- Forum: Advanced Customizations > Others
- Topic: URL length limitation to filter records
- Replies: 9
- Views: 2693
Re: URL length limitation to filter records
That should avoid the link send via email being truncated. A proxy link (shorter) to return the actual link (long). But, the long link will still limited by the browser url's length. I check on the https://youtu.be/7gMWoVh62wU?t=145. In appgini old version, it actually generate the POST form. May th...
- 2021-09-24 10:28
- Forum: Advanced Customizations > Others
- Topic: URL length limitation to filter records
- Replies: 9
- Views: 2693
Re: URL length limitation to filter records
Hi, Oliveira. Can you elaborate more or give example/ any external reference? save query string on a temporary file - if it is temporary, that means it will not be persistent and access in future? request string on load with sessionStorage or localStorage - request strings is GET to the temporary fi...
- 2021-09-22 12:45
- Forum: Tips And Tricks
- Topic: Create Multiple Records in a Table from one form
- Replies: 4
- Views: 2162
Re: Create Multiple Records in a Table from one form
Interested to know the method.
- 2021-09-21 07:32
- Forum: Advanced Customizations > Others
- Topic: URL length limitation to filter records
- Replies: 9
- Views: 2693
Re: URL length limitation to filter records
For example, I have constructed a url for a filtered records, as follows: http://localhost.com/abc_view.php?SortField=&SortDirection=&FilterAnd[1]=and&FilterField[1]=1&FilterOperator[1]=equal-to&FilterValue[1]=39&FilterAnd[2]=or&FilterField[2]=1&FilterOperator[2]=equal-to&FilterValue[2]=40&FilterAnd...
- 2021-09-20 02:10
- Forum: Advanced Customizations > Others
- Topic: URL length limitation to filter records
- Replies: 9
- Views: 2693
URL length limitation to filter records
There is url length limitation: When the url was constructed and email to outlook, it tends to be truncated if length exceeded 2048. In addition, different browser also will put limitation on the url length. Is there any existing method in appgini, something like a POST method? I explore this https:...
- 2021-09-10 09:37
- Forum: Advanced Customizations > Others
- Topic: SQL query other than "case when...then"
- Replies: 2
- Views: 1379
Re: SQL query other than "case when...then"
Thanks. Your suggestion work in php.
Just wonder how to implement this to the calculated field. As I now there is pesudo code for id, primary key and table..
but, how to custom a pseudo-code?
Just wonder how to implement this to the calculated field. As I now there is pesudo code for id, primary key and table..
but, how to custom a pseudo-code?
- 2021-09-09 13:38
- Forum: Advanced Customizations > Others
- Topic: SQL query other than "case when...then"
- Replies: 2
- Views: 1379
SQL query other than "case when...then"
Table A Value 3 How to do a sql query to assign 'medium' based on the value in the Table A? The category will be referenced from Table B. I can think of case when...then (hard-code) in the sql query. Is there any alternative way to write the query? Table B Category Min Max Low 0 2.99 Medium 3 4.99 H...
- 2021-08-25 04:09
- Forum: Getting Started
- Topic: How? Filter (or search?) table by click on cell
- Replies: 13
- Views: 3446
Re: How? Filter (or search?) table by click on cell
I think if using the same id columns for filtering multiple ids, it has to use 'OR' instead of 'AND".
Is there a limitation on url length? max is how many characters?
Is there a limitation on url length? max is how many characters?
- 2021-08-04 08:57
- Forum: Getting Started
- Topic: How? Filter (or search?) table by click on cell
- Replies: 13
- Views: 3446
Re: How? Filter (or search?) table by click on cell
I have a slightly difference question.
Is there a way to encode a permalink for multiple ids?
something like filter with ids in {1,2,4,5,7}
Is there a way to encode a permalink for multiple ids?
something like filter with ids in {1,2,4,5,7}
- 2021-08-03 00:03
- Forum: Bugs/annoyances
- Topic: CSV import thousands records (bugs)?
- Replies: 0
- Views: 606
CSV import thousands records (bugs)?
I have using csv import for thousands of records. Below is my observation: 1) the data import quickly into the table as it was observed the data have already loaded into the db table even the process not complete yet. 2) the process of registering membership_userrecords takes much longer time. It to...
- 2021-08-02 23:41
- Forum: Tips And Tricks
- Topic: Audit Log
- Replies: 122
- Views: 139064
Re: Audit Log
I have test in other environment and it works fine. The audit log menu appeared at top right.
Thank you.
Thank you.
- 2021-07-24 00:41
- Forum: Bugs/annoyances
- Topic: After import csv, error message Sorry! You don't have permission to access this table. Please contact the admin.
- Replies: 0
- Views: 492
After import csv, error message Sorry! You don't have permission to access this table. Please contact the admin.
I am experiencing this:
After import csv data, error message turn up 'You don't have permission to access this table. Please contact the admin.'
I was logged-off by the system.
May I know is this still the bug?
Regards,
Stephen
After import csv data, error message turn up 'You don't have permission to access this table. Please contact the admin.'
I was logged-off by the system.
May I know is this still the bug?
Regards,
Stephen
- 2021-07-22 07:33
- Forum: Getting Started
- Topic: Lookup field, advanced SQL edit, memberInfo
- Replies: 15
- Views: 10016
Re: Lookup field, advanced SQL edit, memberInfo
May I ask whether the placeholder %%memberID%% in the advanced lookup query is workable?
Is there any other type of placeholders?
Is there any other type of placeholders?
Code: Select all
SELECT ... WHERE `addresses`.`Username`=%%memberID%% ORDER BY 2
- 2021-07-18 14:07
- Forum: Bugs/annoyances
- Topic: CSV import and lookup field contradict each other [5.97]
- Replies: 1
- Views: 524
Re: CSV import and lookup field contradict each other [5.97]
My temporary solution is :
include incFunctions.php in lib.php
create the following files in hooks:
import_csv.php
//create custom function for $transformFunctions
incFunctions.php
//create custom function for lookupQuery and pkGivenLookupText
include incFunctions.php in lib.php
create the following files in hooks:
import_csv.php
//create custom function for $transformFunctions
incFunctions.php
//create custom function for lookupQuery and pkGivenLookupText
- 2021-07-18 09:43
- Forum: Bugs/annoyances
- Topic: CSV import and lookup field contradict each other [5.97]
- Replies: 1
- Views: 524
CSV import and lookup field contradict each other [5.97]
I am trying to do csv upload for fields with cascading drop down. Advanced sql appended to the default: WHERE `tablename`.`field` = '1' // added before ORDER BY 2 -> the form entry still working The csv import not able to load the correct id from the primary table. Query log display the SQL syntax e...
- 2021-07-10 10:44
- Forum: Bugs/annoyances
- Topic: Print Preview- table view (show all records)
- Replies: 1
- Views: 608
Re: Print Preview- table view (show all records)
It is not a bug. Just filter the records before print preview.
- 2021-07-10 06:11
- Forum: Tips And Tricks
- Topic: Audit Log
- Replies: 122
- Views: 139064
Re: Audit Log
I would like to just share my own experience, despite encounter some clichés, but the overall audit is still functional. After plugin installation: I discovered that the menu was not showed up then I have to manually add it in the 'admin/incHeader.php' as shown in documentation pg. 11 section 3.2 I ...
- 2021-07-10 04:20
- Forum: Tips And Tricks
- Topic: Hide fields select box
- Replies: 8
- Views: 2743
Re: Hide fields select box
This code shall works at header-extras.php <script> \$j(function() { if (localStorage.getItem("columns-contact_view") === null){ const field = {"contacts-department_id":true,"contacts-name":true,"contacts-email":false,"contacts-phone":false} window.localStorage.setItem('columns-contact_view', JSON.s...
- 2021-07-09 09:39
- Forum: Getting Started
- Topic: How to capture $memberinfo with Javascript
- Replies: 9
- Views: 9137
Re: How to capture $memberinfo with Javascript
Anyone could offer help here? I need to parse the php variable to the javascript in js file as follows: //table-tv.js for mass update. Want to replace the selection drop down list with a php return value // part of the code// /* prepare select2 drop-down inside modal */ $j('#mass-update-new-value-mo...
- 2021-07-09 00:48
- Forum: Tips And Tricks
- Topic: Hide fields select box
- Replies: 8
- Views: 2743
Re: Hide fields select box
Just for sharing. It works in certain extents.
But, if there is changes on toggle fields, it will not persist over the page or refresh.
I guess the cookies will be re-write for every refresh or page navigation.
But, if there is changes on toggle fields, it will not persist over the page or refresh.
I guess the cookies will be re-write for every refresh or page navigation.
- 2021-07-08 09:22
- Forum: Tips And Tricks
- Topic: Hide fields select box
- Replies: 8
- Views: 2743
Re: Hide fields select box
I try it on the browser console: window.localStorage.removeItem('columns-contact_view'); const field = {"contacts-department_id":true,"contacts-name":true,"contacts-email":true,"contacts-phone":true} window.localStorage.setItem('columns-contact_view', JSON.stringify(field)); It works and will unset ...
- 2021-07-07 09:44
- Forum: Bugs/annoyances
- Topic: Print Preview- table view (show all records)
- Replies: 1
- Views: 608
Print Preview- table view (show all records)
Appgini 5.97 I wonder whether it is the right behavior. The print preview in Table view will actually print all the records instead of the table view per page. Is there a way to limit the no. of records shown in the print page? If it is truly the right behavior, will the execution of print preview a...
- 2021-07-07 09:04
- Forum: Tips And Tricks
- Topic: Audit Log
- Replies: 122
- Views: 139064
Re: Audit Log
Finally, I discovered that the menu was not showed up because I have to manually add it in the 'admin/incHeader.php' as shown in documentation pg. 11 section 3.2 After put the code, the menu will show up in the left instead of right. I also also check on the config.php but no code was appending at t...