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?

Search results

  1. DaDo

    Database Driven Combo Lookup

    try this // Inizializza l'array $combolist $combolist = []; // Itera sui risultati della query foreach ($active as $recordvalue) { $combolist[$recordvalue['coursetypeid']] = $recordvalue['name']; } $xcrud->change_type('coursetype', 'select', '', $combolist);
  2. DaDo

    Important Update: Unauthorized xCrud Software Versions

    Important Update: Unauthorized xCrud Software Versions Greetings to all our cherished community members, We hope this message finds you well. Today, we need to address a significant issue concerning the xCrud software that affects the integrity and future of our community. Unauthorized...
  3. DaDo

    xCrud Image WebP Conversion

    $xcrud->change_type('field', 'image', false, 'is_webp' => true); *** Hidden text: You do not have sufficient rights to view the hidden text. Visit the forum thread! ****** Hidden text: You do not have sufficient rights to view the hidden text. Visit the forum thread! ****** Hidden text...
  4. DaDo

    reload a xcrud dataset

    *** Hidden text: You do not have sufficient rights to view the hidden text. Visit the forum thread! ***
  5. DaDo

    How do do xcrud->where NOT IN

    Sorry for delay too busy you can try using this : $xcrud->where("buyers.buyer_name NOT IN $buyername_not_in_string");
  6. DaDo

    unset_edit for multiple conditions

    $xcrud->unset_edit(true,'{status}','=',"Under review AND {lastedited}='Admin'"); // try this
  7. DaDo

    unset_edit for multiple conditions

    Is not supported
  8. DaDo

    DB query pass field variable

    I can't understand exactly what you want to do can you share your table mysql please
  9. DaDo

    DB query pass field variable

    you have possibility to do this : Example 1 $xcrud->fields('id','field_relation','field_dropdown'); $xcrud->relation('field_dropdown','table_dropdown','id_relation','field_value',array('data_array' => {field_relation})); Example 2...
  10. DaDo

    DB query pass field variable

    I can't understand what you need please explain
  11. DaDo

    New version 1.7.20 doesn't work as expected on php 7.4

    Hello, The really owner of xcrud f0ska was dead and other user have decided to create new site and sell own modification "more modification is graphical not functionality", I have decided to start xcrud.me forum to support f0ska project and do not lost this amazing work in memory of him.
  12. DaDo

    New version 1.7.20 doesn't work as expected on php 7.4

    Hello, Sorry is not official xcrud version and cannot support maybe contact author.
  13. DaDo

    Developer from Slovakia

    Welcome!! maybe if you want you can share snipped or custom part you have do in snipped area Regards
  14. DaDo

    Add button options

    hide_button( button_name(s) ) - hides system or your custom button $xcrud->hide_button('save_edit'); $xcrud->hide_button('save_new');
  15. DaDo

    Sticky header?

    You can make mediaquery in css
  16. DaDo

    mapping for old commands into V1.7

    Do not support xcrud v17
  17. DaDo

    Sticky header?

    You can try add this on table class xcrud.css
  18. DaDo

    Sticky header?

    try add this on our thead class position: sticky; position: -webkit-sticky; left: 0px; z-index: 2;
  19. DaDo

    BUG Bug in Inline Editing nested table (fields_inline)

    $xcrud->order_by('auftragsbearbeitung_artikel.id','DESC');
  20. DaDo

    action callback function.php (onclick=return confirm)

    YOU CAN SET PLUGIN ATTRIB YOU WANT TO DO $xcrud->set_attr('artikel_duplizieren',array('id'=>'artikel_duplizieren','data-text'=>'Are you sure you want to ....')); j(document).on("ready xcrudafterrequest", function(event, container,data) { //here you can do all your request via javascript or...
Top Bottom