Is it possible to add a new row to shinobi grids?

First of all, I am using shinobicontrols to develop Interactive User Interface Controls (Grids) for iOS using Objective c and please do not offer me some other controls as an answer because I only need to use that.

I am using this control halfway. I downloaded the demo code for the grids provided by shinobicontrols (30 days trial). from: http://www.shinobicontrols.com/shinobigrids/product-tour/get-started-quickly-and-easily/

I was able to reorder rows and columns, edit cell content, column width size based on pinch stiffness, and more.

But I couldn't add a new row or column to the existing grid. Just wanted to know if this could be achieved.

Thanks in advance.

+3


source to share


3 answers


Edit the item (add / remove) and just do [grid reload];



I think this should be done.

+1


source


The above answer seems to be correct. Adding My Views Shinobi Grids can be thought of as cells in a UITableView. If you just change the array of table data sources and call [tableview reloadData]

, the number of cells displayed in the view also changes. There is no way to add a line yet.



+1


source


Check out this one . I would say this is in alpha, but I can say it will be quite powerful in a month or two. Any suggestions are greatly appreciated and it's free of course. The number of lines and the content of the line is completely controlled by the delegate, so it is dynamic.

0


source







All Articles