Christian, to change the header color to white (or something else), do the 
following:

1)  customize the skin of MobileHeaderGroup, such as follows
supportClasses|MobileGridHeader
{
    skinClass: ClassReference('skins.MyMobileGridHeaderSkin');
}

Preferably use a standalone css file rather than inline fx:Style, and include 
it in your top-level app file, eg:
<s:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009"; ....  >
    <fx:Style source="ModifiedGrid.css"/>
</s:ViewNavigatorApplication>

2)  in the customized skin, set firstButton, middleButton and lastButton to use 
your custom header button skin :
public class MyMobileGridHeaderSkin extends 
spark.skins.MobileGridHeaderButtonBarSkin
{
...

    override protected function createChildren(): void
    {
        super.createChildren();
      firstButton.skinClass = middleButton.skinClass = lastButton.skinClass = 
MyHeaderButtonSkin;
    }

3) design a custom header button skin that display eg. a label in a white 
outline rectangle.
You can inherit from the various *Button*Skin in the mobile theme or make your 
own.
Keep in mind that mobile skins often use FXG skins, that are not customizable 
(eg. no cornerRadius or the like).

Let me know how it worked.

Maurice 

-----Message d'origine-----
De : Maurice Amsellem [mailto:[email protected]] 
Envoyé : mardi 1 avril 2014 16:25
À : [email protected]
Objet : RE: MobileGrid Skins

MobileGrid is entirely based on Spark List (with only a custom renderer).

Maurice 

-----Message d'origine-----
De : Jonathan Christian [mailto:[email protected]]
Envoyé : mardi 1 avril 2014 16:12
À : [email protected]
Objet : Re: MobileGrid Skins

Does the MobileGrid provide the same functionality as a spark list where the 
hovered and selected states can be modified so the cell background color isn't 
displayed even when a user selected an item in the list?


On Tue, Apr 1, 2014 at 8:43 AM, Maurice Amsellem [via Apache Flex Users] <
[email protected]> wrote:

> Ok I will have a look at it.
>
> >and is making the columns not selectable possible?
> You mean, disable sorting on header click ?
>
> Maurice
>
> -----Message d'origine-----
> De : Jonathan Christian [mailto:[hidden 
> email]<http://user/SendEmail.jtp?type=node&node=5875&i=0>]
>
> Envoyé : mardi 1 avril 2014 15:18
> À : [hidden email] <http://user/SendEmail.jtp?type=node&node=5875&i=1>
> Objet : RE: MobileGrid Skins
>
> Yeah you're right, I zipped the wrong project sorry! here is the new 
> link
> -
> https://drive.google.com/file/d/0B4quPL0V-7sBS3ZIbl83eEJTU2c/edit?usp=
> sharing
>
> I tried editing the headerGroup in the skin and was only able to 
> remove the shadow, and using CSS I was able to set up a white column 
> color with a gray font. I'd really like to figure out how to change 
> the header color to white as well and is making the columns not selectable 
> possible?
>
> Thanks Again
> Jonathan
>
>
>
> --
> View this message in context:
> http://apache-flex-users.2333346.n4.nabble.com/MobileGrid-Skins-tp5693
> p5873.html
>
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>
>
> ------------------------------
>  If you reply to this email, your message will be added to the 
> discussion
> below:
>
> http://apache-flex-users.2333346.n4.nabble.com/MobileGrid-Skins-tp5693
> p5875.html  To unsubscribe from MobileGrid Skins, click 
> here<http://apache-flex-users.2333346.n4.nabble.com/template/NamlServl
> et.jtp?macro=unsubscribe_by_code&node=5693&code=amNpc2ludGhlaG91c2UyMU
> BnbWFpbC5jb218NTY5M3w3NzgwMTEwOTM=>
> .
> NAML<http://apache-flex-users.2333346.n4.nabble.com/template/NamlServl
> et.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=n
> abble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNa
> mespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subs
> cribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-sen
> d_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://apache-flex-users.2333346.n4.nabble.com/MobileGrid-Skins-tp5693p5876.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Reply via email to