[flexcoders] Re: Datagrid not displaying selected item or rollover color any more.

2009-02-16 Thread Jason Nichols
I guess I didn't put down.  There is still data in every row of the
datagrid, however the only row that displays a rollover effect is the
header row.

--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote:

 No data or dataProvider is null or empty?
 
 Alex Harui
 Flex SDK Developer
 Adobe Systems Inc.http://www.adobe.com/
 Blog: http://blogs.adobe.com/aharui
 
 From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com]
On Behalf Of Jason Nichols
 Sent: Monday, February 16, 2009 6:50 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Datagrid not displaying selected item or
rollover color any more.
 
 
 I've searched around and have yet to find an answer for this question.
 Perhaps I'm just phrasing it incorrectly.
 
 I have a Flex app that until recently performed as expected. The Tab
 is a class that Extends from FlexLib MDICanvas. Tabs are put into a
 FlexLib SuperTab. I've gotten everything to work in production, so I
 feel the issue doesn't have anything to do with use of FlexLib.
 Either I've added something to my code base, or changed a setting
 because with the exception of one subtab, every single datagrid on
 every single tabbed page (8 in all) only shows the header row for each
 datagrid. Has anyone ever seen this before?
 
 Thanks,
 j





[flexcoders] Re: Datagrid not displaying selected item or rollover color any more.

2009-02-16 Thread Tim Hoff

Perhaps your DataGrids are inheriting some styles from the new
containers.  Since the header is showing a rollover, it's probably not
an enabled issue.  Try setting the styles directly on the DataGrid tag;
to see if it is an inheritance issue and/or to isolate the problem.  You
want to make sure that useRollOver=true, selectable=true, and that
rollOverColor and selectionColor isn't the same as the backgroundColor. 
You might also check to see if any new CSS has been introduced; that has
settings for DataGrid.

-TH

--- In flexcoders@yahoogroups.com, Jason Nichols jason...@... wrote:

 I guess I didn't put down. There is still data in every row of the
 datagrid, however the only row that displays a rollover effect is the
 header row.

 --- In flexcoders@yahoogroups.com, Alex Harui aharui@ wrote:
 
  No data or dataProvider is null or empty?
 
  Alex Harui
  Flex SDK Developer
  Adobe Systems Inc.http://www.adobe.com/
  Blog: http://blogs.adobe.com/aharui
 
  From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com]
 On Behalf Of Jason Nichols
  Sent: Monday, February 16, 2009 6:50 AM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Datagrid not displaying selected item or
 rollover color any more.
 
 
  I've searched around and have yet to find an answer for this
question.
  Perhaps I'm just phrasing it incorrectly.
 
  I have a Flex app that until recently performed as expected. The Tab
  is a class that Extends from FlexLib MDICanvas. Tabs are put into a
  FlexLib SuperTab. I've gotten everything to work in production, so I
  feel the issue doesn't have anything to do with use of FlexLib.
  Either I've added something to my code base, or changed a setting
  because with the exception of one subtab, every single datagrid on
  every single tabbed page (8 in all) only shows the header row for
each
  datagrid. Has anyone ever seen this before?
 
  Thanks,
  j
 






[flexcoders] Re: Datagrid not displaying selected item or rollover color any more.

2009-02-16 Thread Jason Nichols
Thanks Tim,

I went ahead and defined a datagrid on the same canvas the one of the
ones that aren't working, and it works just fine.  I guess it's
possible that there's something hidden within the domain model since
that seem to be the only thing that all non working tabs now have in
common. It's just very confusing since every has worked in past, and I
have attempted to roll back to previous version with the same result.
  The one thing I haven't seen is if a parent class in the domain is
messing everything up, or if it's something else coming from the
grails side.

Thanks for the help,

j


--- In flexcoders@yahoogroups.com, Tim Hoff timh...@... wrote:

 
 Perhaps your DataGrids are inheriting some styles from the new
 containers.  Since the header is showing a rollover, it's probably not
 an enabled issue.  Try setting the styles directly on the DataGrid tag;
 to see if it is an inheritance issue and/or to isolate the problem.  You
 want to make sure that useRollOver=true, selectable=true, and that
 rollOverColor and selectionColor isn't the same as the backgroundColor. 
 You might also check to see if any new CSS has been introduced; that has
 settings for DataGrid.
 
 -TH
 
 --- In flexcoders@yahoogroups.com, Jason Nichols jasonnic@ wrote:
 
  I guess I didn't put down. There is still data in every row of the
  datagrid, however the only row that displays a rollover effect is the
  header row.
 
  --- In flexcoders@yahoogroups.com, Alex Harui aharui@ wrote:
  
   No data or dataProvider is null or empty?
  
   Alex Harui
   Flex SDK Developer
   Adobe Systems Inc.http://www.adobe.com/
   Blog: http://blogs.adobe.com/aharui
  
   From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com]
  On Behalf Of Jason Nichols
   Sent: Monday, February 16, 2009 6:50 AM
   To: flexcoders@yahoogroups.com
   Subject: [flexcoders] Datagrid not displaying selected item or
  rollover color any more.
  
  
   I've searched around and have yet to find an answer for this
 question.
   Perhaps I'm just phrasing it incorrectly.
  
   I have a Flex app that until recently performed as expected. The Tab
   is a class that Extends from FlexLib MDICanvas. Tabs are put into a
   FlexLib SuperTab. I've gotten everything to work in production, so I
   feel the issue doesn't have anything to do with use of FlexLib.
   Either I've added something to my code base, or changed a setting
   because with the exception of one subtab, every single datagrid on
   every single tabbed page (8 in all) only shows the header row for
 each
   datagrid. Has anyone ever seen this before?
  
   Thanks,
   j
  
 





[flexcoders] Re: Datagrid not displaying selected item or rollover color any more.

2009-02-16 Thread Jason Nichols
Status = Fixed.

I started looking at the domain model since that seemed to be the one
common thread throughout the non functioning pages.

In the parent class at some point I had put:

get uid and set uid, when I was playing around with IUID.  Although
the implements IUID had been commented out the set and get were still
visible on the object.  Removing get/set fixed everything.

j 

--- In flexcoders@yahoogroups.com, Jason Nichols jason...@... wrote:

 I've searched around and have yet to find an answer for this question.
  Perhaps I'm just phrasing it incorrectly.
 
 I have a Flex app that until recently performed as expected.  The Tab
 is a class that Extends from FlexLib MDICanvas. Tabs are put into a
 FlexLib SuperTab.  I've gotten everything to work in production, so I
 feel the issue doesn't have anything to do with use of FlexLib. 
 Either I've added something to my code base, or changed a setting
 because with the exception of one subtab, every single datagrid on
 every single tabbed page (8 in all) only shows the header row for each
 datagrid.  Has anyone ever seen this before?
 
 
 Thanks,
 j