Welcome to xCrud Community - Data Management and extended PHP CRUD
Join us now to get access to all our features. Once registered and logged in, you will be able to create topics, post replies to existing threads, give reputation to your fellow members, get your own private messenger, and so, so much more. It's also quick and totally free, so what are you waiting for?
hello there is an error when using the validation and the type of radio compo together by default when I add the radio it appears marked and the validation does not seem to be executed
<?php
// if you want to use radio
$array_result = array('0'=> 'False','1'=>'True');
$xcrud->change_type('amount','radio','',$array_result);
//if you want to use select
$xcrud->change_type('amount','select','',$array_result);
?>