Search results

  1. G

    Net user add and not edit joined records

    Thanks Rob for reply. For now I set the form to readonly, and added button element, which points to a form, where the user can add address.
  2. G

    Net user add and not edit joined records

    Bumpity bump - I still need this. Anyone? Thanks Vasik
  3. G

    Database join element - display joined data bellow

    A solution to be found here: http://fabrikar.com/forums/showthread.php?t=27362
  4. G

    Display element as calc element

    I use it for display result of a query in list view, but need to hide it in form view...:-) For now I used JS to hide the element onload...
  5. G

    Display element as calc element

    Thanks, this works... Any chance to add hidden option for display element?
  6. G

    Logged user should only see their own records

    Do a search here in the forum, or check wiki: http://fabrikar.com/forums/index.php?wiki/pre-filters/
  7. G

    Display element as calc element

    Yup, eval on, return '{rowid}'; works in calc element, doesn't work in display element...
  8. G

    Display element as calc element

    Hi, I would like to use some php in my display element eval, for displaying some info in my list view, but it doesn't seem to work the same way calc element works. In display element I tried return '{rowid}'; Which doesn't work... Any clue? I prefer display element, as it doesn't save...
  9. G

    Display text element vs text area element with AJAX

    Thanks, works great!
  10. G

    Display text element vs text area element with AJAX

    Just to clear what our problem is: Let's say we have addresses and orders table. On the orders table, there's a db join element, pointing to addresses table, which allows the user to pick the address he has already entered, or add a new one. We need to display the addresses somehow, for the...
  11. G

    Display text element vs text area element with AJAX

    Any chance to make this work with the display element? Thanks to msrecycles I got this working with text element, but this is not an optimal solution...
  12. G

    Display text element vs text area element with AJAX

    This is exactly what I need too (see here http://fabrikar.com/forums/showthread.php?t=27251)! Could you post your code? I hope to use display element too, as I don't want to store any data that is not needed in my db. For your ACL question, you can create another access level, call it "noaccess"...
  13. G

    Database join element - display joined data bellow

    Thanks for reply. I think something like what I need is on the demo site: http://demo.fabrikar.com/index.php/elements/ajax-test/form/14/0 . Anyone knows how this was done?
  14. G

    CSS form template

    Not sure - I wanted to edit the template to match my needs, but I don't see the code for rendering the validation symbol and the tip message, to be able to adjust it ...
  15. G

    search multiple data in one field filter

    Or, better solution with preg_split, which takes care of both spaces and commas (didn't made this myself, see here http://php.net/manual/en/function.preg-split.php, example 1) $text_line = "{test___text}"; $text_line = preg_split("/[\s,]+/",$text_line); var_dump($text_line); exit;
  16. G

    search multiple data in one field filter

    Tested this in PHP submission plugin, where it gives me the array split by newline: $text_line = "{test___text}"; $text_line = explode("\n",$text_line); var_dump($text_line);exit;
  17. G

    CSS form template

    Bumpity bump
  18. G

    Database join element - display joined data bellow

    Tested this now - what I did was I joined the address list to the list with dbjoin element, and setup autofill. It seems to work fine. However, when I want to make the fields view only, I have to unlink the joined elements and set their editable access level to special. Is there any other way to...
We are in need of some funding.
More details.

Thank you.

Members online

No members online now.
Back
Top