Steve,
Thank's for a great product, I'm starting to develope some very nice tools with this library.
My question involves changing the default column width while in list view.
I'm sure this is documented in the forum somewhere, but I am finding some of the posts conflicting...some say you have to edit the library, others say it may be configurable via an .ini file.... I'd much rather accomplish this via an .ini file, since it makes upgrading xataface a while lot nicer... Either way is fine.
My coding experience is moderate, but ambitious...
I have a couple of columns where the information generated is broken into two llines - likely for purposes of keeping the view compact, but in my case i would like the width increased for particular columns.. for example - I have a column with called "owner", which is populated with peoples names, this column is populated with a __sql__ query from another table in valuelists.ini -- here is the query I have:
---begin code ----begin code---
[Owner]
__sql__ = "SELECT name_id, concat(last_name, ', ', first_name) FROM people ORDER BY last_name" ...
---end----end----
So what I am trying to accomplish is getting the 'last_name' & 'first_name' to appear on the same line while in list-view, rather than separate lines, and it seems to me like problem is the column width causing the results to get a line break -- perhaps its something else (the 'concat') ?
.
Thank's
-B