Coder Social home page Coder Social logo

Comments (9)

bigpresh avatar bigpresh commented on May 31, 2024

Something like transform, but called for each and every cell, you mean?

I'd imagine most presentational stuff could be done with CSS, surely?

from dancer-plugin-simplecrud.

joshrabinowitz avatar joshrabinowitz commented on May 31, 2024

No, not presentational, content-wise.

For example, I'd like to add an

<a href="linkhere">original content</a> 

to a cell, or assemble data from multiple columns into one cell without using custom_columns.

from dancer-plugin-simplecrud.

joshrabinowitz avatar joshrabinowitz commented on May 31, 2024

wouldnt necessarily have to be for every cell. Perhaps I could specify just certain columns that would allow custom content. I'll try to work up a usage example later today.

from dancer-plugin-simplecrud.

bigpresh avatar bigpresh commented on May 31, 2024

Hmm. The example app does just that via custom_columns, but that's adding a new column, not modifying an existing one.

I can see what you mean, a direct way to pass through callbacks to HTML::Table::FromDatabase to act upon individual cells, as opposed to creating new ones, could be handy.

It could, perhaps, be as simple as allowing the specification of an entry in custom_columns whose name matches that of a column that exists in the table to over-ride it, maybe?

from dancer-plugin-simplecrud.

joshrabinowitz avatar joshrabinowitz commented on May 31, 2024

I think that solution would be pretty elegant and consistent with the existing interface. I like it.

from dancer-plugin-simplecrud.

joshrabinowitz avatar joshrabinowitz commented on May 31, 2024

I just discovered that it does work this way, except that if you use custom_columns' transform function to override the display of a sortable column, it becomes unsortable.

This is different than #44 because this column would be otherwise sortable.

I can see cases where you would and wouldn't want to leave a previous sortable column sortable after applying a custom_column transformation, though I think in general it'd be preferable to leave it sortable.

from dancer-plugin-simplecrud.

joshrabinowitz avatar joshrabinowitz commented on May 31, 2024

Actually I just did more testing and it doesn't just override the normal callback, it also duplicates that column. That is, if I have a table like

 create table widgets ( id int, name varchar, desc varchar);

and I say

 simple_crud(
    prefix="/widgets",
   db_table=>"widgets",
   custom_columns=>[ 
      {name=>'name', raw_column=>'name', transform=>sub { "hi $_[0]" } },
  ]
 );

Then I'll see the 'name' column twice (with the transform applied each time) in the resulting HTML.

I'll see if this is easily fixable. Also haven't tested with the deprecated hashref-based version of custom_columns.

from dancer-plugin-simplecrud.

joshrabinowitz avatar joshrabinowitz commented on May 31, 2024

For reference, there is more discussion about this topic at #78

from dancer-plugin-simplecrud.

joshrabinowitz avatar joshrabinowitz commented on May 31, 2024

This feature has been added. Issue closed.

from dancer-plugin-simplecrud.

Related Issues (20)

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.