Page 1 of 1

ListMagic - highlighting changed fields?

Posted: Sun Jul 11, 2010 10:05 am
by Clarkey
Hi folks, I've started using data grids in my first app but I'm considering swapping to ListMagic for simplicity and the inbuilt features that aren't there (yet?) with data grids - especially filtering, checkboxes and the simple CSV-style data input/output.

However, it seems that the increased ease of use brings some limitations on what can be done in specific rows or cells - is this view correct? For example, is there any way in ListMagic to format individual 'cells' to indicate that their content has been changed?

More broadly, is there a comparison of features (or limitations) anywhere to help new users decide when to use which approach for specific scenarios and/or key requirements?
Best,
Keith..

Re: ListMagic - highlighting changed fields?

Posted: Tue Jul 13, 2010 2:23 pm
by Zryip TheSlug
Clarkey wrote:Hi folks, I've started using data grids in my first app but I'm considering swapping to ListMagic for simplicity and the inbuilt features that aren't there (yet?) with data grids - especially filtering, checkboxes and the simple CSV-style data input/output.
Hi Clarkey,

You can do all of that in the Data Grid object by code.

You can import simply data in a data grid in csv style by using the dgText property.

The dgText property accepts tab for delimiting fields and return for delimiting rows.

To replace comma in you csv data by a tab, use this code:

Code: Select all

replace comma by tab in tMyCSVData

Re: ListMagic - highlighting changed fields?

Posted: Wed Jul 14, 2010 8:30 am
by Clarkey
Zryip,

Thanks for the response and the dgText tip for CSV handling.

I guess I could use code to add data grid filtering functionality (and other 'standard' UI control features that I was expecting Revolution to deliver 'out of the box'). However, as a non-developer - more used to configuring products and gluing together high-level components - this would take me a very long time and distract from my primary use of Rev for development of my products. So, I would prefer to apply my limited skill (& to be honest, interest) in coding to what will differentiate my app, rather than build standard UI functionality that I can buy in ready-made components.

ListMagic seems to do a lot of what I need for one screen control 'out of the box' but there is no reference in its documentation around formatting of individual grid cells or rows - as is possible in data grids and the RunRev Planet grid stack. So, I'm wondering if anyone has managed to achieve this or whether it is a limitation of the ListMagic architecture and/or underlying components?
Best,
Keith..