-
ttakahashi committed revision 272 to the VCL for PHP SVN repository, changing 1 files.
2009-10-19 05:41:59 UTC by ttakahashi
-
ttm committed revision 271 to the VCL for PHP SVN repository, changing 1 files.
2009-06-25 08:28:56 UTC by ttm
-
ttm committed revision 270 to the VCL for PHP SVN repository, changing 2 files.
2009-06-24 16:00:14 UTC by ttm
-
ttm committed revision 269 to the VCL for PHP SVN repository, changing 1 files.
2009-06-24 14:46:51 UTC by ttm
-
I found the problem, for checkboxes the JSClick handler have to be used. It seams that IE (6/7/Cool do not fire the onchange event, when changing the status of a checkbox.
2009-05-13 08:59:28 UTC by mkauli
-
If you have an application with a DBGrid and a ProgressBar, you can't:
- edit the data in the grid;
- order the results after a column
- check/uncheck columns (choose what columns you want to see)
2009-05-08 13:16:56 UTC by claudiah
-
I use a checkbox in my form. Changing this checkbox disables/enables other elements on the form, i.e. when the checkbox is checked the elements are enabled.
Using this example:
function CheckBox1JSChange($sender, $params)
{
?>
var checkbox = findObj( "CheckBox1" );
var item = findObj( "CheckBox2" );
if( checkbox && item )
{
item.disabled = !checkbox.checked;
}
2009-05-06 16:30:03 UTC by mkauli
-
ttm added claudiah to the VCL for PHP project.
2009-05-04 10:18:48 UTC by ttm
-
I haven't checked, but RawInclude is not part of the VCL, you should try contact the RawInclude developer. In my opinion, the javascript code required for the form validator to perform the validation is not being generated when you are using RawInclude.
2009-05-02 18:19:55 UTC by ttm
-
Hi,
I'm use a FormValidator in a secondary page include in a RawInclude component of primary page as "pagecontent".
When I execute only the secondary page I have no problem and routine FormValidator1_validate() is correctly execute in "onSubmit" event page.
But, when I execute primary page where is include RawInclude , FormValidator of secondary page don't work ! I'm testing many...
2009-04-27 10:54:24 UTC by guydau