Search option in the google table

Good evening,

I have really some problems with enable an search option for the google table.

When i look at an table from datatables then they have a nice real time search function.
Is that also possible with this plugin?

I want a search just like here

http://www.dragonyard.nl/album/album-list.php

this is my code in the page

[formresults id=7 page_size=100 google=1 cols=3 ]

I have readed all the wiki page and it is really a problem for me. I just don’t understand what i have to do.
My input form has 3 thingy’s
ID 89 (Ingame name section) – ID 92 (BattleTAG section) – and ID 94 (Link section)

Is there a search field from google (its google table that i enabled).

Must i download datatables? if so then this is useless for me :(

Please dont just say you need the advanced beaceause i don’t understand anything for it. I need an example step by step what to do…

my website is d3blacklist.com

I believe the frm-search shortcode works with the formresults table.
http://formidablepro.com/knowledgebase/make-your-front-end-data-searchable/

i did try that code but it wouldn't work :(

 

I have a search field but it dont searches...

Hmm.. I thought that was an option. It should be, so let's make it one. This change will be included in the next release, but you can make it now by opening formidable/pro/classes/controllers/FrmProEntriesController.php and go down to line 1397. Change:

        $where = array('it.form_id' => $form->id);
        if($user_id)
            $where['user_id'] = FrmProAppHelper::get_user_id_param($user_id);
        
        $entries = $frm_entry->getAll($where, '', '', true, false);

to:

        $where = 'it.form_id='. (int)$form->id;
        if($user_id)
            $where .= ' AND user_id='. (int)FrmProAppHelper::get_user_id_param($user_id);
            
        $s = FrmAppHelper::get_param('frm_search', false);
        if ($s){
            $new_ids = FrmProEntriesHelper::get_search_ids($s, $form->id);
            $where .= ' AND it.id in ('. implode(',', $new_ids) .')';
        }
        
        if(isset($new_ids) and empty($new_ids))
            $entries = false;
        else
            $entries = $frm_entry->getAll($where, '', '', true, false);

Let us know if you run into any issues after making this change.

This solution worked perfect! Really thnx!

Sorry for the late reply but i was on vacation.

Really thnx!!!

Topic closed.