-
User error please close
var acctRPC = wtRemoteProcedureCall("data_fetch.php", "main", "acc");
should be
var acctRPC = new wtRemoteProcedureCall("data_fetch.php", "main", "acc");.
2007-11-28 22:24:20 UTC by nobody
-
calling the constructor for wtRemoteProcedureCall in the following line:
var acctRPC = wtRemoteProcedureCall("data_fetch.php", "main", "acc");
creates the error:
this.startProxy is not a function
wtRemoteProcedureCall("data_fetch.php", "main", "acc")wt_core.js (line 790)
draw_accts()test.js (line 3)
init()test.js (line 67)
onload(load )test.php (line 1)
[Break on this error]...
2007-11-28 21:32:12 UTC by nobody
-
Manually specify line color with the addLine and addCurve methods
wtLineChart.prototype.addCurve = function(ptList, _color)
{
if (ptList.length
2007-09-23 13:45:03 UTC by justdiy
-
font color and font style have functions, but nothing for font weight (normal or bold).
(in wt_vector.js, wtText)
/**
Sets the font weight of the text
@param {String} _weight The font style ( normal, bold )
*/
wtText.prototype.setFontWeight = function(_weight)
{
_weight = _weight.toLowerCase();
if (!(_weight == "normal" || _weight == "bold"))
throw "wtText::setFontWeight():
2007-09-23 13:41:46 UTC by justdiy
-
Not sure if this is the proper way to move a wtText object once it has been created, but I couldn't see any other easy way to do it.
(added to wt_vector.js)
New function for the wtText prototype:
/**
Sets the x,y location of the text
@param {Number,Number} x,y The x and y location
*/
wtText.prototype.setXY = function(_x,_y)
{
if (isMSIE())
{...
2007-09-23 13:39:54 UTC by justdiy
-
francium committed revision 91 to the WT Toolkit SVN repository, changing 1 files.
2007-05-20 11:16:29 UTC by francium
-
marco0119 committed revision 90 to the WT Toolkit SVN repository, changing 1 files.
2007-05-19 13:23:53 UTC by marco0119
-
marco0119 committed revision 89 to the WT Toolkit SVN repository, changing 2 files.
2007-05-18 09:39:31 UTC by marco0119
-
There will be a presentation of WT Toolkit in Hong Kong University of Science and Technology this Saturday. In addition to demonstrating WT Toolkit, we (i.e. me and Marco) will also discuss the difficulties and pitfalls facing AJAX developers, and we will compare WT Toolkit with other popular AJAX toolkits like Prototype and Dojo.
Date: 19th May, 2007
Time: 17:20 - 18:00 HKT (+0800)
Venue...
2007-05-18 03:16:59 UTC by francium
-
francium committed revision 88 to the WT Toolkit SVN repository, changing 6 files.
2007-05-15 17:18:08 UTC by francium