We apologize for the delay in releasing updates for PHPRad Classic 2.7.3, please be assured that a new update will be made available in the coming months as more focus is on releasing the stable version Radsystems Studio https://radsystems.io/. This stable version is set to happen this July 2021
Regards,
It is great news that radsystems is updated, but do not let die who was your first tool and gave and gives many satisfactions, I have many projects in phprad classic.
P / D: I am testing the calendar in radsystems 3.9 amazing work !!! You just need to add leaflet as components for maps and it is already very powerful. Cheers and good job! Keep going!
Hello everyone, I need to hide fields or put them in read-only mode, depending on the selection of a previous value … Example: Person : per_id, per_dni, per_name, per_gender, per_pregnancy, per_fechaparto, per_disability, per_discapacidadetail
When selecting value 1 in per_gender which is = a Female, I show or remove only reading of the per_pregnancy and per_fechaparto fields. On the contrary, if I select 2 in per_gender that is = Male, I should hide or read only the fields per_pregnancy and per_fechaparto. Thx!
@ddiaz2380 you can use the StartWithFieldSetTitle property in Add Page Field Properties, all you have to do is, select the field you want the group title to appear on top and enter the name for that group of input.
I tried it that way but it doesn't look very good ... it happens to be a very extensive table of questions, which I group by "modules" so I needed to do them by tabs, otherwise it is very long and messy.
Hello, I know that I spend a lot of time. Could you share the project of how I integrate calandar? It is possible, that they add the component like fullcalendar and leaflet for maps, it would be great for the tool. But it hasn't been upgraded for years ... apparently it died ... I bought radsystem with the hope of finding updates and answers to these requests but it is in the same condition. Regarding willvin's tutorials they are excellent! If I could, I would pay for the patreon, but the pandemic situation made everything very difficult and I cannot afford to pay anything extra, even though I need to make both the calendar and the maps work. Anyway ... I'll have to find a solution.
I know it took a long time, but these suggestions are great to implement. I would like you to add the leaflet and fullcalendar maps to the components. Greetings!!!
I know it took a long time, but these suggestions are great to implement. I would like you to add the leaflet and fullcalendar maps to the components. Greetings!!!
I know it took a long time, but these suggestions are great to implement. I would like you to add the leaflet and fullcalendar maps to the components. Greetings!!!
Hello everybody! I have a table in which I have many fields, I need to separate x amount of fields by "modules" this would be tabs. But I don't know how to do it ... Example:
tab 1: General id, dni, apeynom tab 2: Geography country, city, neighborhood, map tab 3: Features provision, social work
I can't find the option to group fields in tabs, only to select a form in a tab. Is this possible what I need to do? Greetings!
Without removing the index, achieve this by modifying the controllers. But when specifying again it makes them original, I suppose I will have to make it custum. But I leave my temporary solution in case someone wants to improve it ...
/** * persona_per_docnro_value_exist Model Action * @return array */ function persona_per_docnro_value_exist($val){ $db = $this->GetModel(); $exist=false; if ($val > 0) { $db->where('per_docnro', $val); $exist = $db->has('persona'); } return $exist; }
PersonaController.php
//Check if Duplicate Record Already Exit In The Database //if(isset($modeldata['per_docnro'])){ if (isset($modeldata['per_docnro']) and ($modeldata['per_docnro'] > 0 ) ){ $db->where('per_docnro',$modeldata['per_docnro'])->where('perid',$rec_id,'!='); if($db->has($tablename)){ $this->view->page_error[] = $modeldata['per_docnro']." ¡Ya existe!"; } }