Jose Galvan
2009-May-29 21:14 UTC
Mi browser no muestra el formato para captura desplegado
Hola, Soy nuevo totalmente con ruby on rails..de hecho durante 15 a#os programe con un RAD que no maneja codigo asi que estoy intentando retomar este tipo de lenguajes nuevamente..y vaya que si han cambiando. Estoy siguiendo un tutorial que indica como hacer una aplicacion sencilla llamada ''DEPOT'', despues de sortear algunos problemas de configuracion de mysql y el mismo rails logre llegar al punto donde se me indica que ejecute el comando: >ruby script/generate scaffold Product Segun esto este comando me generara el controlador, el modelo y la vista adecuados para ejecutar las altas bajas y cambios a mi tabla de ''Products'' que previamente defini en mi base de datos (depot_development)en mysql. Una vez que levanto el servidor ejecuto en el browser: http://localhost:3000/Products y el browser me regresa lo siguiente: Listing products Show Edit Destroy Show Edit Destroy Show Edit Destroy New product y bueno, efectivamente la tabla tiene ya 3 registros, la cosa aqui es que no me muestra el contenido de los registros solo las opciones para manipularlos o la opcion para crear uno nuevo...si le doy click a ''New product'' me muestra otra pagina pero no me muestra los campos para yo ingresar datos. de hecho borre la aplicacion y volvi a generar todo segun el demo pero nada, sigue igual. Algun paso hice mal o no se que pasa..pareciera que el controlador no esta invocando las vistas (formatos) de despliegue. Alguna idea o comentario seran de gran ayuda. Gracias. Jose -- Posted via http://www.ruby-forum.com/.
It must be a question for spanish list, what do you think? Cesar _______________________________________________ Gnu/Linux count user #416024 Skype: cesarstafe
Jose Galvan
2009-May-30 16:02 UTC
Re: Mi browser no muestra el formato para captura desplegado
Cesar Diaz wrote:> It must be a question for spanish list, what do you think? > > Cesar > > _______________________________________________ > Gnu/Linux count user #416024 > > Skype: cesarstafeYes,you are right Cesar, I am sorry, I already left the message in the right place, anyway if you know something about what I am asking for please help me, I will appreciate it. Jose. -- Posted via http://www.ruby-forum.com/.
Franco Catena
2009-May-30 22:09 UTC
Re: Mi browser no muestra el formato para captura desplegado
Jose: You must use specify to the generator the fields like this: ruby script/generate scaffold Product name:string description:string and so on with all the fields in the database. If you want to add one field in a previously created scaffold you can do it editing the files in the app/views/products/ directory. Regards. Franco Catena. On May 30, 1:02 pm, Jose Galvan <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Cesar Diaz wrote: > > It must be a question for spanish list, what do you think? > > > Cesar > > > _______________________________________________ > > Gnu/Linux count user #416024 > > > Skype: cesarstafe > > Yes,you are right Cesar, I am sorry, I already left the message in the > right place, anyway if you know something about what I am asking for > please help me, I will appreciate it. > > Jose. > -- > Posted viahttp://www.ruby-forum.com/.
Jose Galvan
2009-May-31 03:34 UTC
Re: Mi browser no muestra el formato para captura desplegado
Thanks Franco, the problem was solved, someone else from spanish list suggested the same as you and it worked fine. Thanks again ! Jose Franco Catena wrote:> Jose: > > You must use specify to the generator the fields like this: > > ruby script/generate scaffold Product name:string description:string > > and so on with all the fields in the database. If you want to add one > field in a previously created scaffold you can do it editing the files > in the app/views/products/ directory. > > Regards. > > Franco Catena. > > On May 30, 1:02�pm, Jose Galvan <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org>-- Posted via http://www.ruby-forum.com/.