Recent content by atopher

  1. A

    Drawing bar and pie charts in webspeed.

    Highcharts looks impressive, quicker/more responsive that fusion too.
  2. A

    Drawing bar and pie charts in webspeed.

    I've used fusion charts (there's a no frills free version) and extJS to produce charts on web. Fusion charts has loads of examples included, ext is fairly straight forward though not so well documented.
  3. A

    webspeed + json

    IE is also particularly sensitive to extra commas in the JSON. It would be worth installing firebug for Firefox (you can also use it with IE) and you'll be able to debug the AJAX calls as they are executed.
  4. A

    webspeed + json

    You can use the WRITE-JSON command from a prodataset or TT, or manually build JSON from within your code - likely for jquery e.g. {&out} '~{ "data": [' . for each cust no-lock break by cust.acc: {&out} '~{"name:":"' cust.name '"}' . if not last(cust.acc) then {&out} ','...
Top