greptilian logo

IRC log for #javaee, 2014-02-04

Please see http://irclog.greptilian.com/javaee for which days have been logged.

| Channels | #javaee index | Today | | Search | Google Search | Plain-Text | plain, newest first | summary

All times shown according to UTC.

Time S Nick Message
00:53 AndroidLoverInSF joined ##javaee
00:57 AndroidLoverInSF joined ##javaee
01:19 tommmied joined ##javaee
01:19 jieryn joined ##javaee
01:49 AndroidLoverInSF joined ##javaee
01:51 AndroidLoverInSF joined ##javaee
01:57 AndroidLoverInSF joined ##javaee
02:34 AndroidLoverInSF joined ##javaee
02:51 MasterProgram joined ##javaee
02:52 Web-Wise joined ##javaee
03:08 Naros joined ##javaee
03:08 Naros left ##javaee
03:16 AndroidLoverInSF joined ##javaee
03:22 NationalCoder joined ##javaee
03:23 NationalCoder joined ##javaee
03:27 NationalCoder joined ##javaee
03:46 Lappro joined ##javaee
04:19 tommmied joined ##javaee
04:24 sbos99 joined ##javaee
04:32 Lappro joined ##javaee
05:15 ramsrib joined ##javaee
05:19 tommmied joined ##javaee
06:08 ramsrib joined ##javaee
06:19 tommmied joined ##javaee
06:31 kisisten joined ##javaee
06:33 liecno_ joined ##javaee
06:33 jieryn_ joined ##javaee
06:35 NationalCoder joined ##javaee
06:39 mbc joined ##javaee
07:24 Voyage joined ##javaee
07:33 sess joined ##javaee
07:35 AlexCzar joined ##javaee
07:40 firebird1 joined ##javaee
07:47 TxRx127 joined ##javaee
08:18 NationalCoder joined ##javaee
08:19 fabioportieri joined ##javaee
08:19 tommmied joined ##javaee
08:22 fabioportieri morning
08:47 TxRx127 left ##javaee
08:47 TxRx127 joined ##javaee
08:49 firebird1 joined ##javaee
09:19 tommmied joined ##javaee
10:19 tommmied joined ##javaee
10:54 sess is <%@error page in JSP deprecated?
11:18 NationalCoder joined ##javaee
11:19 tommmied joined ##javaee
11:35 NationalCoder joined ##javaee
11:56 firebird1 i hate db null
12:19 tommmied joined ##javaee
12:23 Monkey_C joined ##javaee
13:33 fabioportieri joined ##javaee
13:41 kotten joined ##javaee
13:49 acuzio joined ##javaee
13:50 firebird1 my tables strted simple 20 columns after lot of split and nonsplit it turned to 50 :(
13:53 pdurbin nonsplit?
14:07 tommmied joined ##javaee
14:18 Naros joined ##javaee
14:18 NationalCoder joined ##javaee
14:41 sheenobu joined ##javaee
15:24 NationalCoder joined ##javaee
16:28 ramsrib joined ##javaee
16:29 AlexCzar joined ##javaee
16:34 pdurbin I have a JSF mystery
16:34 pdurbin again
16:35 acuzio JSF is a mystery
16:35 fabioportieri ehe
16:35 acuzio Not using it would be a good start
16:35 NationalCoder joined ##javaee
16:36 pdurbin I'm ok with this: http://i2.kym-cdn.com/photos/images/newsfeed/000/284/922/0e3.png
16:36 pdurbin (not using JSF)
16:36 fabioportieri what's the mistery?
16:36 firebird1 joined ##javaee
16:37 pdurbin fabioportieri: you really want to hear about it?
16:37 fabioportieri yes :D
16:38 pdurbin on one page I have this: <ui:include src="search-include-fragment.xhtml"/>
16:38 pdurbin and that "fragment" has a backing bean. @ViewScoped
16:39 fabioportieri ok
16:39 pdurbin (the other page is @ViewScoped too)
16:39 pdurbin to initialize the fragment I have an init() method with @PostConstruct
16:39 pdurbin and the init() method gets called. stuff happens
16:39 fabioportieri yes
16:40 pdurbin my list gets populated. I can print out all the elements to my log
16:40 pdurbin but back on the JSF page that includes the fragment, in the datatable, the elements are not printed out
16:41 fabioportieri what error do you get?
16:43 pdurbin no error
16:43 fabioportieri blank page?
16:43 fabioportieri table with no data in it
16:43 fabioportieri ?
16:44 pdurbin one sec
16:45 pdurbin if I force my list to be empty, Primefaces (or JSF 2.2) puts "No records found" on the page
16:46 pdurbin (inside the datatable)
16:46 fabioportieri ok
16:48 pdurbin if I let my list get populated the way I want (again, I can print the values to my log) "No records found" becomes blank
16:48 pdurbin fabioportieri: does that make sense?
16:48 pdurbin so there's a change... something is happening
16:48 fabioportieri ah so you got a blank page?
16:48 pdurbin just the datatable is blank
16:48 fabioportieri or a blank fragment
16:49 fabioportieri pdurbin: can you paste the code of the bean+table?
16:49 pdurbin not all of the fragment is blank. just the datatable
16:50 fabioportieri ok
16:51 pdurbin fabioportieri: am I going about this the wrong way? the way I'm initializing the fragment?
16:51 fabioportieri pdurbin: no idea till i see the code..
16:51 pdurbin fair enough :)
16:51 pdurbin let me talk a walk first
16:54 acuzio talk a walk
16:54 acuzio the latest version of take a walk :-)
16:59 fabioportieri cigarette break for me too
17:10 pdurbin I removed @PostConstruct from the init() method on the fragment and am adding this on the parent page instead: <f:viewAction action="#{SearchIncludeFragment.init()}"
17:10 pdurbin same results
17:11 firebird1 joined ##javaee
17:12 fabioportieri pdurbin: what happens if you build a dummy list and use that on your table?
17:13 firebird1 fabioportieri, it wont be tasty
17:14 fabioportieri true that
17:15 firebird1 how can dummy bread wall be tasty ?
17:24 pdurbin fabioportieri: we changed it from a <p:dataTable> to <p:dataList> and now that part of the fragment is no longer blank
17:26 fabioportieri pdurbin: then i guess something is wrong with the way you bind the datatable to the bean/list
17:26 pdurbin oh right right
17:27 pdurbin if I use <p:dataTable> ... to show the values I have to wrap them in <p:column>
17:27 pdurbin sanity regained
17:31 pdurbin sorry for the noise
17:33 fabioportieri what noise :p
17:49 sheenobu joined ##javaee
17:54 AndroidLoverInSF joined ##javaee
18:00 firebird1 joined ##javaee
18:09 fabioportieri will i ever go home today, i wonder
19:06 NationalCoder joined ##javaee
19:39 TinkerTyper joined ##javaee
20:08 MasterProgram joined ##javaee
20:14 NationalCoder joined ##javaee
20:15 NationalCoder joined ##javaee
20:19 NationalCoder joined ##javaee
20:39 v3d joined ##javaee
20:54 v3d joined ##javaee
21:00 v3d joined ##javaee
21:09 v3d joined ##javaee
21:09 hephaestus_ joined ##javaee
21:11 hephaestus_ joined ##javaee
21:33 Jhosepth joined ##javaee
21:55 hephaestus_ joined ##javaee
23:12 l_ joined ##javaee

| Channels | #javaee index | Today | | Search | Google Search | Plain-Text | plain, newest first | summary

Please see http://irclog.greptilian.com/javaee for which days have been logged.