Giter VIP home page Giter VIP logo

django-bcp's People

Contributors

garmoncheg avatar macropin avatar thijstriemstra avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

django-bcp's Issues

Went to wrong place :D

Hey!

I started using your Tabulator some time ago for my school project and really love it. However I am still quite unsure with some of the functions and syntaxes how they work.

Currently I am struggling making a search bar for my webclient to search from my databases.

As I understood I could use the variable from my user input to make search function for the table and process it that side.

After alot of struggling and googling I came accross for a solution you had made for other person:
``

//custom filter function
function matchAny(data, filterParams){
    //data - the data for the row being filtered
    //filterParams - params object passed to the filter

    var match = false;

    for(var key in data){
        if(data[key] == filterParams.value){
            match = true;
        }
    }
	console.log(match);
    return match;
}

//set filter to custom function
$("#example-table").tabulator("setFilter", matchAny, {value:x});

This function actually does pretty much what I want, however it requires exact match to get the data.

I have tried different ways to change if(data[key] == filterParams.value) to make it accept "type:like" instead but have been unsuccessful.

I was wondering if this is possible to achieve with this code or do I need to scratch my plan to modify this, and return to trying to find new solution?

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.