Skip to main content

Show Posts

This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.

Messages - pinoyhandy

2
Questions / 2nd Lookup Parameter
Dear Support,

Why the use of a second lookup parameter not working? Please see the attachment.

However, replacing the second lookup parameter with a string value makes everything OK. Please advise if there is a proper way to do it.


Thanks.

3
Suggestions / Export to PDF, Word, Excel - Page Orientation
Dear Support,

The export page is nicely done. However, I would like to suggest to add the option to select the "Page Orientation" as most of the times the table columns are too many to fit in portrait layout.

Thanks a lot.

Arnel
4
Suggestions / Page Filter Component - Select Field
Dear Support,

Can you please check why the options "Remote Search Lookup" and "Dynamic Select Lookup" are not available in the Page Filter Component "Select Field"? May I suggest that since lookup is very essential in many scenarios when adding/editing records, it would be perfect if any database tables can also be filtered using lookup.

Example. Filtering 500 staff by Company, by Department and by Sub-department.

Please advise if this can be done on-page filter component.

Thanks a lot.
Arnel
5
Bugs / Re: Lookup - Multiple Data-Load-Target
Dear Support,

I just would like to inform you that the issue still exists in v2.6.4. Hope you can include the fix on the next version.

Thanks a lot.

Regards,
Arnel
6
Issues / PNG image background turned black
Dear Support,

I just would like to report a cosmetic issue when uploading and displaying PNG images on list tables using v2.6.4. Previously, the background was transparent so it looks nicer but now it's black.

Please see attachment.

Thanks,
Arnel
7
Bugs / Re: Dropdown list on Edit issue
Dear Emman,

Thanks a lot. I downloaded the latest version already. However, the issue is still there. Please see attachments.

Please check.

Regards,
Arnel
9
Bugs / Re: Dropdown list on Edit issue
Hi Willvin,

I am attaching the "sampledb.sql" and "sampledb.ppm" file so you can replicate the issue by yourself.

Please, also check the word document for explanation.

Thanks a lot.
Arnel
10
Bugs / Dropdown list on Edit issue
Hi Support,

Just would like to report another possible bug.

The dropdown list fields on Edit is not loading automatically on Edit. Only the first dropdown list is working. Please see attachment.

Thanks a lot.

Regards,
Arnel
14
Bugs / Lookup - Multiple Data-Load-Target
Dear Support,

Just would like to report a bug.

1. I have multiple data-load-target lookup but only the first target in the list is working which is "day7" in this example:

<select required=""  id="ctrl-property_short_code" name="property_short_code" data-load-target="day7" data-load-path="<?php print_link('api/json/shift_template_day7_option_list') ?>" data-load-target="day6" data-load-path="<?php print_link('api/json/shift_template_day6_option_list') ?>" data-load-target="day5" data-load-path="<?php print_link('api/json/shift_template_day5_option_list') ?>" data-load-target="day4" data-load-path="<?php print_link('api/json/shift_template_day4_option_list') ?>" data-load-target="day3" data-load-path="<?php print_link('api/json/shift_template_day3_option_list') ?>" data-load-target="day2" data-load-path="<?php print_link('api/json/shift_template_day2_option_list') ?>" data-load-target="day1" data-load-path="<?php print_link('api/json/shift_template_day1_option_list') ?>"  placeholder="<?php print_lang('select_a_value_'); ?>"    class="custom-select" >
                                <option value=""><?php print_lang('select_a_value_'); ?></option>
                               
                                <?php
                                $property_short_code_options = $comp_model -> shift_template_property_short_code_option_list();
                                if(!empty($property_short_code_options)){
                                foreach($property_short_code_options as $arr){
                                $val = array_values($arr);
                                $selected = $this->set_field_selected('property_short_code',$val[0], '');
                                ?>
                                <option <?php echo $selected; ?> value="<?php echo $val[0]; ?>">
                                    <?php echo (!empty($val[1]) ? $val[1] : $val[0]); ?>
                                </option>
                                <?php
                                }
                                }
                                ?>
                               
                            </select>

Attached here is a screenshot of the Add form. Would appreciate your help.

2. A related issue, the lookup is not loading database value on Edit. Please advise how to handle.

Thanks a lot.

Kind regards,
Arnel