Please find more information here: viewtopic.php?f=33&t=129
and turn debug mode to check what exactly happens
Search found 6177 matches
- Mar 12th, '21, 12:33
- Forum: Settings: Filtering (search) / Autocomplete
- Topic: 'from' and 'to' date search not working when show operator enabled
- Replies: 2
- Views: 161
- Mar 5th, '21, 13:11
- Forum: ApPHP Shopping Cart Talk {developers/users}
- Topic: Session problem (captchaResult, shopping_cart_content)
- Replies: 1
- Views: 132
Re: Session problem (captchaResult, shopping_cart_content)
Please contact our support
- Feb 19th, '21, 10:13
- Forum: ApPHP DataGrid
- Topic: Datagrid 8_3_9 upload file in Mysql blob field
- Replies: 1
- Views: 143
- Feb 12th, '21, 09:10
- Forum: ApPHP Shopping Cart Talk {developers/users}
- Topic: Cannot delete a Tag
- Replies: 1
- Views: 164
Re: Cannot delete a Tag
Check you have following definition in you
protected\modules\shoppingcart\controllers\TagsController.php at the top of file:
Take in account, that "Tags" must starts from the capital letter.
protected\modules\shoppingcart\controllers\TagsController.php at the top of file:
Code: Select all
// Models
use Modules\ShoppingCart\Models\Tags;
Take in account, that "Tags" must starts from the capital letter.
- Feb 5th, '21, 10:15
- Forum: ApPHP HotelSite / uHotelBooking Talk {developers/users}
- Topic: No Available Room and Zero Price
- Replies: 2
- Views: 221
Re: No Available Room and Zero Price
Please open a ticket in our support: https://apphp.com/support and provide them all needed information.
- Jan 29th, '21, 09:17
- Forum: ApPHP DataGrid
- Topic: Datagrid 847 - does not accept diacritics.
- Replies: 2
- Views: 231
Re: Datagrid 847 - does not accept diacritics.
Don't define this field as a text, define it with type="syy"
- Jan 22nd, '21, 08:52
- Forum: ApPHP DataGrid
- Topic: Datagris 827 - Add/Edit/Details Mode Settings
- Replies: 2
- Views: 257
Re: Datagris 827 - Add/Edit/Details Mode Settings
Accepted, thanks. We'll add this to the list of TOD for next version
- Dec 18th, '20, 09:05
- Forum: ApPHP DataGrid {HOW TO}
- Topic: HOW TO add JavaScript confirmation to link fields?
- Replies: 0
- Views: 375
HOW TO add JavaScript confirmation to link fields?
Sometimes you need to get confirmation before allowing link action.
For example, when you want to perform some action or delete something.
Simple add confirmation alert in a following way:
For example, when you want to perform some action or delete something.
Simple add confirmation alert in a following way:
Code: Select all
"on_js_event"=>"onclick='return confirm(\"Are you sure?\");'"
- Dec 4th, '20, 08:22
- Forum: ApPHP Business Directory / uBusinessDirectory Talk {developers/users}
- Topic: find longitude / latitude button in listings
- Replies: 3
- Views: 703
Re: find longitude / latitude button in listings
In CHttpRequest method getUrlContent() have following parameters: function getUrlContent($url = '', $method = 'get', $data = [], $params = [], $function = 'file_get_contents') by default this method called with 'curl' $json = A::app()->getRequest()->getUrlContent($url, 'get', [], [], 'curl'); so, yo...
- Dec 4th, '20, 08:20
- Forum: ApPHP DataGrid
- Topic: Add a button above the datagrid (f.e pageline-settings) and add new function
- Replies: 2
- Views: 411
Re: Add a button above the datagrid (f.e pageline-settings) and add new function
Hi! You may implement such feature with easy. 1. Prepare 2 arrays of view mode: min and max. 2. Create a button, that saves in session or cookies selected option. 3. According of the selected option run on your server side min or max version of datagrid columns in view mode. Such functionality may b...