IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

How to change the colour in panels


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
ravikumar15

New User


Joined: 27 Mar 2006
Posts: 68

PostPosted: Fri Sep 11, 2009 8:09 pm
Reply with quote

Hi,

I have created a CLIST panel. I want to know whether is it possible to change the colour of the headings and other texts.
Back to top
View user's profile Send private message
prino

Senior Member


Joined: 07 Feb 2009
Posts: 1306
Location: Vilnius, Lithuania

PostPosted: Fri Sep 11, 2009 8:18 pm
Reply with quote

CLIST panels only exist in your imagination, so you can color them any color you want.
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Fri Sep 11, 2009 8:48 pm
Reply with quote

If you actually mean an ISPF panel, color and highlighting is all controlled with the )ATTR section. Review the ISPF Edit Models for panels and/or the ATTR section.
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2547
Location: Silicon Valley

PostPosted: Fri Sep 11, 2009 9:09 pm
Reply with quote

Quote:
...only exist in your imagination, so you can...

I thought those had to be in black and white only? icon_lol.gif
Back to top
View user's profile Send private message
ravikumar15

New User


Joined: 27 Mar 2006
Posts: 68

PostPosted: Mon Sep 14, 2009 8:00 pm
Reply with quote

How to use that ATTR function. Please could you provide me the syntax of that.
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Mon Sep 14, 2009 8:05 pm
Reply with quote

Quote:
Please could you provide me the syntax of that.


the manual will do it better than anybody else ( link at top of the page )
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Mon Sep 14, 2009 8:06 pm
Reply with quote

ATTR is not a function, it is an attribute of the panel definition and its fields. You need to go RTFM for a long time -- at least until you understand what a panel is, how to define, and the attributes you can assign to the fields.
Back to top
View user's profile Send private message
ShameemOracle

New User


Joined: 23 Sep 2009
Posts: 15
Location: bangalore

PostPosted: Tue Sep 29, 2009 2:57 pm
Reply with quote

hi all,
I hope the below piece of code will be self explanatory
Code:


¢ type(text) attn(on)                           
¬ area(dynamic) extend(on) scroll(on)           
$ type(dataout) intens(high)                   
@ type(dataout) intens(low) COLOR(YELLOW)       
# type(dataout) intens(low) COLOR(PINK)         
* TYPE(PS)   /* PS -TRQ,PT-BLUE,FP/NT-GREEN */ 
! TYPE(TEXT) color(red)                         
  TYPE(nt)   /* Shift+6 (CAP)character  */     
` type(TEXT) COLOR(GREEN)                       
~ type(nef)                                     



For more info: ISPF Panjels Beyond Basics From ISPF guru Doug Nadel
Back to top
View user's profile Send private message
ShameemOracle

New User


Joined: 23 Sep 2009
Posts: 15
Location: bangalore

PostPosted: Tue Sep 29, 2009 3:02 pm
Reply with quote

The code will look like this

Code:

)ATTR FORMAT(MIX)
¢ type(text) attn(on)
¬ area(dynamic) extend(on) scroll(on)
$ type(dataout) intens(high)
@ type(dataout) intens(low) COLOR(YELLOW)
# type(dataout) intens(low) COLOR(PINK)
* TYPE(PS) /* PS -TRQ,PT-BLUE,FP/NT-GREEN */
! TYPE(TEXT) color(red)
^ TYPE(nt) /* Shift+6 (CAP)character */
` type(TEXT) COLOR(GREEN)
~ type(nef)
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts 3270 personal communications. Can't c... TSO/ISPF 2
No new posts SELECT from data change table DB2 5
No new posts Trying to change copybook in online c... CICS 4
No new posts Change Default Scroll Setting TSO/ISPF 1
No new posts Change history of vsam file. JCL & VSAM 3
Search our Forums:

Back to Top