User Feedback Archive : November 2015

Posted by Anton
2015-11-29

Hello Dear Tom.

Please can you tell me how can i sorting entries by categories and view it in page. For example. I have categories "seller", "buyer", "guests" and i want this entries viewing like: ... Read More
Posted by Tom
2015-11-30

Hi,

>Sellers in DB - 50 persons | buyers in DB - 10 persons | Guests in DB - 5 persons

OK, so you want to display the number of records in each category ( rather than sorting )
You can execute sql ... Read More
Posted by Chandra
2015-11-29

Hi tom

is there a way just to show gratitude after users vote ... user can not see the results of the vote ... only administrators who know the link can view the results of the vote. thank you for ... Read More
Posted by Tom
2015-11-29

>is there a way just to show gratitude after users vote ... user can not see the results of the vote

How about removing the result from the result template (web/poll-(poll name)/tpl.result.inc.php)? ... Read More
Posted by Mike
2015-11-23

Hello Tom
Can you tell me please if it is possible to make URL clickable, I know this has been asked before but the example only shows for email?
Regards
Mike
Posted by Tom
2015-11-24

>I know this has been asked before but the example only shows for email?

Yes, an example for email is here:
http://www.phpkobo.com/article--m2072

It's possible for urls, too. The difference is in ... Read More
Posted by Mike
2015-11-23

Hello Tom thank you for your recent contact. In the address database, I have a text box for information, can I alter the width of the displayed output as it occupies a lot of vertical space?
Posted by Tom
2015-11-24

>can I alter the width of the displayed output as it occupies a lot of vertical space?

Yes, feel free to do so. The template path is web/staff/tpl.(table-name).search.inc.php.
Posted by SENDHILKUMAR K
2015-11-19

How to restrict staff user delete option
Posted by Tom
2015-11-21

>How to restrict staff user delete option

Hi, this article will help you:
http://www.phpkobo.com/article--m2756
Posted by Prana
2015-11-18

Hi,
How would you cut off voting so when people come to the page it just shows the results?
Posted by Tom
2015-11-18

Hi, You can force the script to show the result page by adding the following line at the end of the run function in web/js/ajax_poll.js.
... Read More
Posted by Mike
2015-11-13

Hello Tom
Thank you for getting back to me on this. As I need to use multiple choice with your script (which fits perfectly for my use), could you guide me with regard the alterations Which files ... Read More
Posted by Tom
2015-11-18

Hi, If I were you, I would start with CVSelection in web/codelib/sys/CVField.inc.php. The conversion from CVSelection to multiple choice input wouldn't be straightforward but I think it's still the ... Read More
Posted by Iain Roome
2015-11-13

Hi Tom
I'm currently using Ajax Poll Admin v1.06 and in the middle of a campaign at the moment for a client.
I've been asked to add an automated redirect link to a new web page ... Read More
Posted by Tom
2015-11-18

Hi Iain,

>I've been asked to add an automated redirect link to a new web page

An easy way to accomplish it is put javascript that redirects users, in the result template page. You can find ... Read More
Posted by Jenny
2015-11-13

Find some methods for me.

<?php echo $hm->Zb('rs:def:home_city')+$hm->Zb('rs:def:home_city')/100*55; ?>

That's mean, for example:

566+55%=877.3
Posted by Tom
2015-11-18

## <?php echo $hm->Zb('rs:def:home_city')+$hm-
## >Zb('rs:def:home_city')/100*55; ?>
Are you assuming "home_city" is an integer?
Posted by Oscar
2015-11-12

Dear: Tom
I have 6 Column in Edit Option and I need to disable the Keyboard in 3 of then, How can I Do that.
-------------------------------------------------------------------------------------
but ... Read More
Posted by Tom
2015-11-18

Hi,
You can disable saving a particular field. In the following example, I'll show you how to disable saving the "first_name" field. Open web/staff/app/cls_ps_(table-name).inc.php and find the ... Read More
Posted by Hello dear Tom
2015-11-12

Thank you for brilliant script - it's perfect. Really.

Dear Tom, please, can you recommend me how i must to do to plusing some field. For example:

<?php echo $hm->Zb('rs:def:some_digits'); ?>
+ ... Read More
Posted by Tom
2015-11-12

No, you can't combine Zb(...) like that. you have to create a new field class to combine multiple input tags.
Posted by Oscar
2015-11-11

Dear: Tom
do you know where is the Start Point of ID, how we put the ID number for View. where is the first time you do something to view the ID in the Edit Option.
Posted by Tom
2015-11-12

>do you know where is the Start Point of ID,

ID starts with 1000 but you can initialize/re-initialize auto number in phpMyAdmin.
Posted by Oscar
2015-11-09

Dear: Tom
I have 6 Column in Edit Option and I need to disable the Keyboard in 3 of then, How can I Do that.
Posted by Tom
2015-11-12

One way to do it is to add the "disabled" attribute to the input fields you want to disable. To do so, open the template web/staff/tpl.(tablename).detail.inc.php and find a field you want to disable. ... Read More
Posted by Ramin
2015-11-09

i want to have in two sections of the website with different config file to receive for different email.
i tried that but not works fine
Posted by Tom
2015-11-12

That's weird. I can put more than one form on the same page!
Posted by Ramin
2015-11-08

i want to add new fields to this form, how i can do that plz ?
Posted by Tom
2015-11-12

It's possible but it's not been documented yet. The code is pretty short.
Did you read it?
Posted by mujtaba
2015-11-05

hi, thanks for the previous answer!
now i want a field to be validiated for example if the user enters alphabets in a number field it should not submit the form and gives error. hope u will get my ... Read More
Posted by Tom
2015-11-12

>now i want a field to be validiated

Then you need to modify CVNumber class.
Posted by Juan
2015-11-04

I want use my own form. it possible?
i have a lot form, it possible use it?
Can i capture the code for post, form.
Posted by Tom
2015-11-12

>I want use my own form. it possible?

No, is't not possible.
Posted by Mike
2015-11-04

Thank you for making this script available.

Could you tell me please if it is possible to make the drop down list multi selectable, eg if I have 4 options I may need to include all 4?
Posted by Tom
2015-11-04

>if it is possible to make the drop down list multi selectable
Sorry, not yet. Several people showed interest on multi select input field and it's in my to-do list. Thank you for your feedback!