When we click on new ask order there is no listing created :( ?
Can you help please
|
|
Nov. 17, 2015, 6:10 a.m.
I have been observing a similar behavior--sometimes I would click the new order button, but the page would do nothing.
It bothered me endlessly for a while. It happened sometimes, but not always; and the cause was not apparent at all. In my case, I finally nailed it down to something probable: at least it is reproducible, now, for me. If I punch in a price without the leading zero (the zero that precedes the decimal point, for instance, when typing 0.1 as '.1') the 'new ask/bid order' button won't do anything, and the page will not react visibly in any way, too. However, if you use 'inspect element' on the new order button, you can see errors showing up in the console--and pressing the new order button generates more errors. Error generated by trying to use a leading-zero-less decimal as price: http://i.imgur.com/ZXz8BVQ.png Error generated by trying to use an alphanumerical value as price: http://i.imgur.com/GjbAaWE.png I suppose that the page was doing nothing, for me, because the code was considering ".1" as not being a number--hence the NaN [https://en.wikipedia.org/wiki/NaN] error. Joto, I know you said in the previous post that the problem should be fixed, but I just redid the procedure above to generate the screenshots; and the error I described still happens. Cheers~ Judicious |
|
|
Nov. 17, 2015, 6:31 a.m.
I have been observing a similar behavior--sometimes I would click the new order button, but the page would do nothing. It bothered me endlessly for a while. It happened sometimes, but not always; and the cause was not apparent at all. In my case, I finally nailed it down to something probable: at least it is reproducible, now, for me. If I punch in a price without the leading zero (the zero that precedes the decimal point, for instance, when typing 0.1 as '.1') the 'new ask/bid order' button won't do anything, and the page will not react visibly in any way, too. However, if you use 'inspect element' on the new order button, you can see errors showing up in the console--and pressing the new order button generates more errors. Error generated by trying to use a leading-zero-less decimal as price: http://i.imgur.com/ZXz8BVQ.png Error generated by trying to use an alphanumerical value as price: http://i.imgur.com/GjbAaWE.png I suppose that the page was doing nothing, for me, because the code was considering ".1" as not being a number--hence the NaN [https://en.wikipedia.org/wiki/NaN] error. Joto, I know you said in the previous post that the problem should be fixed, but I just redid the procedure above to generate the screenshots; and the error I described still happens. Cheers~ Judicious This is not the problem OP is having, though. They type in a "non-NaN" value and the page still does not respond. |