Git Product home page Git Product logo

swiftspreadsheet's People

Contributors

akarsh avatar stuffrabbit 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  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  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  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  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

swiftspreadsheet's Issues

Section header that spans out over multiple columns

Hello, great work on the library and the fact that it relies on native UICollectionView system is great.

I'm trying to create "grouped headers" that can span over muliple columns like in the screenshot below. How would you approach it?
image

I was thinking about adding a large section header but the width of headers column is tied to the width of row's columns.

Color cells from selected cell to headers

Hi everybody,

I would like that when a cell is selected, the cells between the selected one and the header are colored. To make you understand the idea, I post a Google Flight image that shows the result I would like to achieve. how can I do?

Screenshot 2022-11-17 alle 10 29 58

How to change label text of DecorationViews??

thanks for the awesome library!!
I can just create another nib file but I was wondering how to change label text on the fly..
Things I've tried..

//First I registered decorationview as SupplementaryView

self.collectionView.register(topRightDecorationViewNib, forSupplementaryViewOfKind: SpreadsheetLayout.ViewKindType.decorationTopRight.rawValue, withReuseIdentifier: self.defaultSupplementaryViewIdentifier)

//Lastly I tried to access it under ViewKind

func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
        guard let viewKind = SpreadsheetLayout.ViewKindType(rawValue: kind) else { fatalError("View Kind not available for string: \(kind)") }
        
        let supplementaryView = collectionView.dequeueReusableSupplementaryView(ofKind: viewKind.rawValue, withReuseIdentifier: self.defaultSupplementaryViewIdentifier, for: indexPath) as! SpreadsheetCollectionReusableView
        
        supplementaryView.headerDelegate = self
        switch viewKind {
        case .leftRowHeadline:
             if indexPath.section >= 0 && indexPath.section < self.LastPaymentReceiptArray.count {
                supplementaryView.infoLabel.text = self.LastPaymentReceiptArray[indexPath.section].partynm
            }
        case .rightRowHeadline:
            supplementaryView.adjustmentButton.tag = indexPath.section
        case .topColumnHeader:
            supplementaryView.infoLabel.text = self.topHeaderLabels[indexPath.item]
   
        case .decorationTopRight:
//Here I try to mutate the label 
            supplementaryView.infoLabel.text = "View Adjustment"
            
        default:
            break
        }
        
        return supplementaryView
    }

Sorting

Can we have a built-in sorting for columns in near future?

Request for support for SPM by version number

Adding the SwiftSpreadsheet package by branch with SPM works.

However, if you select a version number, e.g. "Up to Next Minor Version", an error message appears in a dialog.
Screen Shot 2021-12-10 at 1 39 08 PM

I believe the resolution is to publish a release on GitHub.

DecorativeView

I'm pretty sure this is a dumb question, but is there a way to update/set the label into a decorative view programmatically ?
I didn't find any example about it in the project and I don't understand how I may access to the label in order to change "Revenue" by something else

Thanks in advance

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.