Git Product home page Git Product logo

Comments (6)

bogdan avatar bogdan commented on June 11, 2024

Your description is pretty unclear: see its hard to understand the difference between "a table" and "my table".

Can you share the grid source code? Can you try to reproduce the issue in console and send me the snippet?
How do you generate columns from attributes array? Are you using column_names attribute?

from datagrid.

edulima avatar edulima commented on June 11, 2024

@bogdan here is the same questions more elaborated I posted on Stackoverflow https://stackoverflow.com/questions/73120544/unable-to-change-column-position-dynamically-datagrid-rails-gem/73120805#73120805

from datagrid.

edulima avatar edulima commented on June 11, 2024

Here is how the columns are generated. There are some custom methods there too. But I don't see an issue with them.

  user_layout = UserLayout.find_by(user_id: Current.user.id)
  if !user_layout.blank? 
    // returns and array of columns names ['Is available', 'Created at'] etc
    user_layout = user_layout.layout['unit']['table'].split(",")
  else
    user_layout = ["Address1", "Property", "Created at", "Updated at"]
  end
  
  user_layout.each do |a|
    case a
      when 'Is available'
        boolean_column(:is_available)  
      when 'Date available'
        column(:date_available)  
      when 'Is advertised'
        boolean_column(:is_advertised)
      when 'Date advertised'
        column(:date_advertised)
      when 'Is vacant'
        boolean_column(:is_vacant)
      when 'Date vacant'
        column(:date_vacant)
      when 'Created at'
        datetime_column(:created_at)
      when 'Updated at'
        datetime_column(:updated_at)   
    end
  end

from datagrid.

bogdan avatar bogdan commented on June 11, 2024

Try this

class PropertyGrid
  include Datagrid
  scope { ... }
  
  def define_layout(user_layout)
    user_layout.each do |a|
    case a
      when 'Is available'
        boolean_column(:is_available)  
      when 'Date available'
        column(:date_available)  
      when 'Is advertised'
        boolean_column(:is_advertised)
      when 'Date advertised'
        column(:date_advertised)
      when 'Is vacant'
        boolean_column(:is_vacant)
      when 'Date vacant'
        column(:date_vacant)
      when 'Created at'
        datetime_column(:created_at)
      when 'Updated at'
        datetime_column(:updated_at)   
    end
 end

class MyController
  def index
    user_layout = UserLayout.find_by(user_id: Current.user.id)
  if !user_layout.blank? 
    // returns and array of columns names ['Is available', 'Created at'] etc
    user_layout = user_layout.layout['unit']['table'].split(",")
  else
    user_layout = ["Address1", "Property", "Created at", "Updated at"]
  end
  @grid = PropertyGrid.new(params[:property_grid])
  @grid.define_layout(user_layout)
  end
end

from datagrid.

edulima avatar edulima commented on June 11, 2024

This works @bogdan thanks for your help. Can you please point me to the documentation where I would be able to find this solutions? Just want to read a make sure I understand it. Thanks

from datagrid.

bogdan avatar bogdan commented on June 11, 2024

Here it is:

https://github.com/bogdan/datagrid/wiki/Columns#dynamic-columns

from datagrid.

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.