search for: element_row_id

Displaying 3 results from an estimated 3 matches for "element_row_id".

2006 Jul 11
0
malformed utf-8 character error
...KCODE=''u'' line in config/environment.rb file... But nothing changes... Any help please... When I look at the development.log, it says: ActionView::TemplateError (malformed UTF-8 character) on line #6 of app/views/personel/edit.rjs: 3: 4: if @successful 5: page.hide element_row_id(@view_options) 6: page.insert_html :bottom, scaffold_tbody_id(@options), :partial => ''new_edit'' 7: page << "new TableRow.MoveAfter(''#{element_row_id(@view_options)}'', ''#{element_row_id(@options)}'');" 8: page.show el...
2006 Jul 12
7
Does anyone work with iso-8859-1 database ?
hello, Our database is in is-8859-1, and I want to update some text fields without success due to some accentuate characters ?? ect ... In my html page (where the charset is iso-8859-19) my textarea display the accentuate characters well and when the user post the form ... I thought that I just need to save it .... without success since ruby map one byte for one character ... So I
2006 May 12
7
RJS and page.select collection size
I need to implement a conditional in my RJS template which looks something like: if (page.select(''row1'').first != null) page << "new TableRow.MoveAfter(''row1'', ''newrow'');" else page << "new TableRow.MoveAfter(''row2'', ''newrow'');" end Now, dumb question.. My