Ok, so not only do labels not display and everything is inline, I get this error:
Fatal error: Call to undefined method HTML_QuickForm_header::getElements() in /var/www/private/xataface-1.0-beta-01/Dataface/FormTool.php on line 678
for a table that I set up using the old version (0.71) that has a bunch of groups in it. These groups show up in the view record area, but I can't even edit the form if I leave them in the fields.ini. If I knock them out, then the edit form comes up fine.
Here is the fields.ini file:
;__sql__ = "select t.*,s.location_code from House_status as t, House_survey as s where t.sid = s.sid"
[location_code]
widget:label = House
;order = 0
[sid]
widget:type = hidden
title = 1
[owner]
widget:label = Dueno
validators:regex = "/[A-Za-z -']/"
widget:focus = 1
[phone]
widget:label = Telefono
widget:type = checkbox
[fieldgroup:Area]
[dim1]
group = Area
label = Ancho
validators:regex = "/[0-9]*/"
widget:atts:size = 3
[dim2]
group = Area
label = Largo
validators:regex = "/[0-9]*/"
widget:atts:size = 3
[dim3]
group = Area
label = Otro
widget:description = "Entrar adicionales medidos si hay. Separa con coma si hay mas que uno"
widget:atts:size = 6
validators:regex = "/[0-9, ]*/"
[owner_estimate]
;group = Area
widget:label = Estimado del dueno?
widget:type = checkbox
[rented]
widget:label = Alquilado
widget:type = checkbox
[rooms]
;group = Cuartos
widget:label = Numero
validators:regex = "/[0-9]*/"
widget:atts:size = 2
[rooms_surveyed]
;group = Cuartos
widget:label = Encuestados
validators:regex = "/[0-9]*/"
widget:atts:size = 2
[rooms_screened]
;group = Cuartos
widget:label = Con tela metalica
validators:regex = "/[0-9]*/"
widget:atts:size = 2
[roof]
widget:label = Techo
widget:type = checkbox
vocabulary = roofs
[kitchen]
widget:label = Cocina
widget:type = checkbox
vocabulary = kitchens
[construction]
widget:label = Construccion
widget:type = checkbox
vocabulary = constructions
[electricity]
widget:type = checkbox
widget:label = Electricidad
[water_source]
widget:label = Fuente de agua
widget:type = checkbox
vocabulary = water_sources
[supply_freq]
widget:label = Cada cuanto llega agua?
widget:type = select
Default = DAILY
vocabulary = water_freq
[water_source_alt]
widget:label = Otras fuentes de agua
widget:type = checkbox
vocabulary = alt_sources
[gather_freq]
widget:label = Cada cuanto?
widget:type = select
vocabulary = water_freq
[store]
widget:type = checkbox
widget:label = Almacena?
[animals]
widget:label = Animales
widget:type = checkbox
vocabulary = animals
[sewage]
widget:label = Desague
widget:type = checkbox
vocabulary = sewages
[insecticide]
;group = Insecticida
widget:label = Que usa?
[insecticide_freq]
;group = Insecticida
widget:label = Cada cuanto?
widget:type = select
vocabulary = insect_freq
[last_treatment]
;group = Insecticida
widget:label = Hace cuanto?
widget:type = select
vocabulary = last_treatment
[fumigate_day]
;group = Ministerio
widget:label = Dia
widget:atts:size = 2
widget:description = Ultima fumigacion
widget:atts:onkeypress="nextField(this,'fumigate_month')"
[fumigate_month]
widget:label = Mes
;group = Ministerio
widget:atts:size = 2
widget:atts:onkeypress="nextField(this,'fumigate_year')"
[fumigate_year]
widget:label = Ano
;group = Ministerio
widget:atts:size = 2
widget:atts:onkeypress="nextField(this,'abate_day')"
[abate_day]
widget:label = Dia
;group = Ministerio
widget:atts:size = 2
widget:description = Ultima abatizacion
widget:atts:onkeypress="nextField(this,'abate_month')"
[abate_month]
widget:label = Mes
;group = Ministerio
widget:atts:size = 2
widget:atts:onkeypress="nextField(this,'abate_year')"
[abate_year]
widget:label = Ano
;group = Ministerio
widget:atts:size = 2
widget:atts:onkeypress="nextField(this,'comment')"
[review]
;group = Validacion
widget:label = Revisar ficha?
widget:description = "Indicar si la ficha necesita revision por alguna razon"
widget:type = checkbox
[comment]
;;group = Validacion
widget:type=portal
widget:label = Comentarios
relationship = moradores
When I moved to 1.0 beta, I just pointed the index.php file to the new version.
??? Let me know what else would help diagnose the problem.