Welcome Visitor, Please Login or Register Now Sunday, April 28, 2024 11:49 PM 
Forums Index > Mewsoft Products > Auctionawy > Quantity of items for sale
New Topic   New Reply
Search for:
Author Message
toymanpaul toymanpaul's personal page
Registered Member
Posts: 16 Display member's posts
Joined: 04-28-24 11:49 PM
Member Offline
View Member's Profile Send private message
 
Back to top
Quantity of items for sale Edit Delete Reply with quote Quote
First Post Posted on: 09-19-08 09:20 AM next post first post
Hello All,\ Can anyone please advise/help.\ When listing a new item/s for auction/sale i can not list 10 items in the Quantity box, can anyone tell me how i can list 10 ,20, 100 etc items in the Quantity box basically any number with 0 in ie 10 20 30 100 101 etc can not be listed.\ If i have ten 10 items have i got to list 5 then a further 5 ????\ Thanks\ Paul
mewsoft mewsoft's personal page
Administrator Team Member
Posts: 5381 Display member's posts
Joined: 04-28-24 11:49 PM
Location: knxoville, TN, USA
Member Offline
View Member's Profile Visit member's website Mewsoft Corporation Send private message ICQ Messenger: ICQ AIM Messenger: AIM YIM Messenger: Yahoo MSN Messenger: MSN
 
Back to top
Re: Quantity of items for sale Edit Delete Reply with quote Quote
Reply #: 1 Posted on: 09-19-08 04:26 PM next post previous post
Strange!, you can insert any number in the quantity field. Did you changed any Javascript code or else, you can just restore the template. Note, when you set the quantity to 1, the reserve field is disabled, if you set it to more than 1, it will be enabled.

Mewsoft Support
www.mewsoft.com

toymanpaul toymanpaul's personal page
Registered Member
Posts: 16 Display member's posts
Joined: 04-28-24 11:49 PM
Member Offline
View Member's Profile Send private message
 
Back to top
Re: Quantity of items for sale Edit Delete Reply with quote Quote
Reply #: 2 Posted on: 09-19-08 05:30 PM next post previous post
\ \ \ \ \
 \ \ \ \ \ \ \ \
mewsoft's Wrote:
 Strange!, you can insert any number in the quantity field. Did you changed any Javascript code or else, you can just restore the template. Note, when you set the quantity to 1, the reserve field is disabled, if you set it to more than 1, it will be enabled.
\
\ I have not changed any javascript I dont know where or how too!!!. \ You ( mewsoft) only installed for me the other day.\ \ Which file/template do i restore/reinstall?? Where and how???
mewsoft mewsoft's personal page
Administrator Team Member
Posts: 5381 Display member's posts
Joined: 04-28-24 11:49 PM
Location: knxoville, TN, USA
Member Offline
View Member's Profile Visit member's website Mewsoft Corporation Send private message ICQ Messenger: ICQ AIM Messenger: AIM YIM Messenger: Yahoo MSN Messenger: MSN
 
Back to top
Re: Quantity of items for sale Edit Delete Reply with quote Quote
Reply #: 3 Posted on: 09-20-08 09:55 AM next post previous post
If you did not change the template, then you do not need to update anything. Please post the URL so we can test.

Mewsoft Support
www.mewsoft.com

toymanpaul toymanpaul's personal page
Registered Member
Posts: 16 Display member's posts
Joined: 04-28-24 11:49 PM
Member Offline
View Member's Profile Send private message
 
Back to top
Re: Quantity of items for sale Edit Delete Reply with quote Quote
Reply #: 4 Posted on: 09-20-08 12:29 PM next post previous post
\ \ \ \ \
 \ \ \ \ \ \ \ \
mewsoft's Wrote:
 If you did not change the template, then you do not need to update anything. Please post the URL so we can test.
\
\ \ URL:http://www.bidup2win.com
mewsoft mewsoft's personal page
Administrator Team Member
Posts: 5381 Display member's posts
Joined: 04-28-24 11:49 PM
Location: knxoville, TN, USA
Member Offline
View Member's Profile Visit member's website Mewsoft Corporation Send private message ICQ Messenger: ICQ AIM Messenger: AIM YIM Messenger: Yahoo MSN Messenger: MSN
 
Back to top
Re: Quantity of items for sale Edit Delete Reply with quote Quote
Reply #: 5 Posted on: 09-20-08 08:08 PM next post previous post
I did not see any problems on your sell page, I registered "Mewsoft" and tried to submit an item and went through to the preview page normal with quantities more than one but I could not submit the auctions because you set your system to require payments before submissions. Try to use another browser or computer, may be your internet or Antivirus is blocking javascript code.

Mewsoft Support
www.mewsoft.com

toymanpaul toymanpaul's personal page
Registered Member
Posts: 16 Display member's posts
Joined: 04-28-24 11:49 PM
Member Offline
View Member's Profile Send private message
 
Back to top
Re: Quantity of items for sale Edit Delete Reply with quote Quote
Reply #: 6 Posted on: 09-24-08 11:14 PM next post previous post
\ \ \ \ \
 \ \ \ \ \ \ \ \
mewsoft's Wrote:
 I did not see any problems on your sell page, I registered "Mewsoft" and tried to submit an item and went through to the preview page normal with quantities more than one but I could not submit the auctions because you set your system to require payments before submissions. Try to use another browser or computer, may be your internet or Antivirus is blocking javascript code.
\
\ Mewsoft thaks for your time with this matter I have tried another browser's and computers, all have been on different ISP's and some with Norton, Panada, Macfee Antivirus and one with no antivirus all are not blocking javascript code nor is windows but with all tests not one could put 10 20 30 etc or 101 120 items to sell all can list say 99 11 121 or any other number.\ This is not a major problem members will have to list around these, but i belive the script should allow 10 items to be listed and other site can do so!!1 This is very puzzleing.
mewsoft mewsoft's personal page
Administrator Team Member
Posts: 5381 Display member's posts
Joined: 04-28-24 11:49 PM
Location: knxoville, TN, USA
Member Offline
View Member's Profile Visit member's website Mewsoft Corporation Send private message ICQ Messenger: ICQ AIM Messenger: AIM YIM Messenger: Yahoo MSN Messenger: MSN
 
Back to top
Re: Quantity of items for sale Edit Delete Reply with quote Quote
Reply #: 7 Posted on: 09-25-08 08:52 PM next post previous post

Good. Now it is clear, search the template Sell.html for this JS tex:

function FilterQuantity(obj){
   if (obj.value != obj.value.replace(/[^1-9]/g,""wink){
   obj.value = obj.value.replace(/[^1-9]/g,""wink;
   obj.focus();
   };
};

and change the 1 to 0 in the 2 lines as following:

function FilterQuantity(obj){
   if (obj.value != obj.value.replace(/[^0-9]/g,""wink){
   obj.value = obj.value.replace(/[^0-9]/g,""wink;
   obj.focus();
   };
};

This will fix it.

Thank you


Mewsoft Support
www.mewsoft.com

toymanpaul toymanpaul's personal page
Registered Member
Posts: 16 Display member's posts
Joined: 04-28-24 11:49 PM
Member Offline
View Member's Profile Send private message
 
Back to top
Re: Quantity of items for sale Edit Delete Reply with quote Quote
Reply #: 8 Posted on: 09-25-08 10:48 PM last post previous post
\ \ \ \ \
 \ \ \ \ \ \ \ \
mewsoft's Wrote:
 

Good. Now it is clear, search the template Sell.html for this JS tex:

function FilterQuantity(obj){
   if (obj.value != obj.value.replace(/[^1-9]/g,"")){
   obj.value = obj.value.replace(/[^1-9]/g,"");
   obj.focus();
   };
};

and change the 1 to 0 in the 2 lines as following:

function FilterQuantity(obj){
   if (obj.value != obj.value.replace(/[^0-9]/g,"")){
   obj.value = obj.value.replace(/[^0-9]/g,"");
   obj.focus();
   };
};

This will fix it.

Thank you

\
\ \ THAT'S DONE IT, All's work well now thanks a million, your the best.
Page 1 of 1
Go to page:

New Topic   New Reply Mark Unread
Jump to:  
Delete   Move     Lock   +Favorits   +Notify   Print