I have an app that I am using the Claymation style. for some reason my grid is not styling correctly. when you select a row the entire row turns white. below is the css for the grid in the stylesheet
.igtbl_ClaymationSelected
{
;
apparently whats happening is the text color is changing to white but the background color doesnt change to Gray. what could cause this. i also have a menu on the same page with a similar issue. what could cause only portions of the style to take effect?
Chances are likely that your styleset is using a background image, rather than a background color. This is a typical approach to get gradients into an HTML page.
Try adding the following to your style definition:
background-image: none;
If that doesn't do it, adjust this to:
background-image: none !important;
didnt work. my page doesnt use any background image. whats really weird is that if I do a group by or sort on the grid the styling kicks in like its suppose to. i now have a gray background on on my grid.
Perhaps it's not a "selected" row style, but an "active" row style that's applying to your row. Can you confirm?
nope I dont have an active row style just a selected.
This is likely going to requrie more in-depth research than we'll be able to provide over the forums. I recommend getting this issue in the hands of Developer Support.
Can you reproduce this behavior in an isolated sample application that we can run and debug? If so, then I sugget you submit a support request; attach your sample to the request and provide a link to this forum thread. A Developer Support Engineer will work with you, using the sample you provide, to determine what is happening and to provide a solution.
Alternately, you can post a sample here, and I'll forward it to someone to have a case created for you. I recommend that you submit the case directly using the link above, as this will help us to address your issue more quicklly.
I am having a similar problem...I styled my webmenu via appstyling. The following is part of the css for my web menu whereby when on of the items is selected, the style should change indicating that the the item is selected.
This on the other hand does not show on my menu. Any help?!
.igmn_AppletiniTopSelected
{background-color:#D5D0B0;border:dashed 2px White;color:#739240;background-image:none;}