Hi,
While testing the Examples on my own server i bumped upon a Casting error with the Advanced Ajax exapmles:
**Adding a Wait Icon
**Resizing Block Controls
Whenever a position was called, lets say left or top, or whenever a borderwidth was set indicating 'px' (e.g. 200px) or for the border “2px 1px 4px 2px” i stumbled upon a Cast to Integer error in the QControlBase.class.php class.
I had to alter:
on line 749:
$strTop = QType::Cast($this->strTop, QType::String);
same for line 737:
$strLeft = QType::Cast($this->strLeft, QType::String);
and line 543:
$strBorderWidth = QType::Cast($this->strBorderWidth, QType::String);
Before it used to be all: * ....::Integer);* on the end.
Hope it can be adjusted because on the examples part here on the site from Qcodo all seems to work fine.
Grtz.