View previous topic :: View next topic
|
Author |
Message |
Casper656
New User
Joined: 10 Mar 2014 Posts: 8 Location: INDIA
|
|
|
|
I am using a panel to display ISPF table using MODEL. The column headers in the panel are defined as type RP. The problem I am facing is that, column headers having tab stop. so when ever I press TAB it skips through each column name. Also these column names are editable too.
provide a solution to make this RP field non-editable. I have help panels for these RP. |
|
Back to top |
|
|
Pedro
Global Moderator
Joined: 01 Sep 2006 Posts: 2593 Location: Silicon Valley
|
|
|
|
ISPF option 0 has this:
Code: |
Tab to point-and-shoot fields |
I am not sure, but you might be able to remove the 'tabbing to'.
Why are they type(RP)? |
|
Back to top |
|
|
Casper656
New User
Joined: 10 Mar 2014 Posts: 8 Location: INDIA
|
|
|
|
Pedro wrote: |
ISPF option 0 has this:
Code: |
Tab to point-and-shoot fields |
I am not sure, but you might be able to remove the 'tabbing to'.
Why are they type(RP)? |
But other panels of the same application having point and shoot fields. so disabling this will affect the other panel. I am looking for a solution exclusive to this panel which will not make any impact on system or any other panels of same application. |
|
Back to top |
|
|
Mickeydusaor
Active User
Joined: 24 May 2006 Posts: 258 Location: Salem, Oregon
|
|
|
|
is there a )HELP section in this panel????? |
|
Back to top |
|
|
Casper656
New User
Joined: 10 Mar 2014 Posts: 8 Location: INDIA
|
|
|
|
Mickeydusaor wrote: |
is there a )HELP section in this panel????? |
Yes. It does have )HELP section which defines help panels associated with Table columns which are defined as Reference Phrases |
|
Back to top |
|
|
don.leahy
Active Member
Joined: 06 Jul 2010 Posts: 765 Location: Whitby, ON, Canada
|
|
|
|
Whether to tab to point-and-shoot fields is a user preference. If I were you, I would leave it alone. Use the NewLine key instead of tab to navigate to the table rows. |
|
Back to top |
|
|
Casper656
New User
Joined: 10 Mar 2014 Posts: 8 Location: INDIA
|
|
|
|
don.leahy wrote: |
Whether to tab to point-and-shoot fields is a user preference. If I were you, I would leave it alone. Use the NewLine key instead of tab to navigate to the table rows. |
If you think of the requirement perspective, its not solution. Also I need to know how to make the TYPE(RP) fields non-editable.
The options I have is, make the TYPE(RP) to normal fields, implement field help and control the type and value through a rexx program.
But here I am looking for my options with TYPE(RP). I want to know if there exists a way to handle it with keeping TYPE(RP). |
|
Back to top |
|
|
Pedro
Global Moderator
Joined: 01 Sep 2006 Posts: 2593 Location: Silicon Valley
|
|
|
|
Quote: |
If you think of the requirement perspective, its not solution. |
I think the more universal user requirement is: "I want my settings to take effect everywhere. I do not want to figure out all of the nuances of Casper's panel."
I think Don's advice was very appropriate and you should not discount it. |
|
Back to top |
|
|
Pedro
Global Moderator
Joined: 01 Sep 2006 Posts: 2593 Location: Silicon Valley
|
|
|
|
Quote: |
... make the TYPE(RP) to normal fields, ... and control the type and value through a rexx program. |
I think it is easier to set the type in the )ATTR section and if it is constant, set the value in the )INIT section. If the column heading changes, then set it in your rexx program. |
|
Back to top |
|
|
don.leahy
Active Member
Joined: 06 Jul 2010 Posts: 765 Location: Whitby, ON, Canada
|
|
|
|
Pedro wrote: |
Quote: |
If you think of the requirement perspective, its not solution. |
I think the more universal user requirement is: "I want my settings to take effect everywhere. I do not want to figure out all of the nuances of Casper's panel."
I think Don's advice was very appropriate and you should not discount it. |
Yep, I hate it when a dialog developer changes my user preferences for no good reason. I offer the same advice to to anyone who asks how to mess with the user's PFK definitions.
I have used RP fields extensively, mostly on HELP panels, and it never would have occurred to me to prevent users from tabbing to them. |
|
Back to top |
|
|
Casper656
New User
Joined: 10 Mar 2014 Posts: 8 Location: INDIA
|
|
|
|
Pedro wrote: |
Quote: |
If you think of the requirement perspective, its not solution. |
I think the more universal user requirement is: "I want my settings to take effect everywhere. I do not want to figure out all of the nuances of Casper's panel."
I think Don's advice was very appropriate and you should not discount it. |
I am sorry, if sounded offending. I didn't mean that. Also its not just one application or one panel. A user setting is global. It affects all other applications and panels. Also, if you try it out you will find it that its not a solution. enabling/disabling "Tab to point-and-shoot fields" doesn't make a difference in this case. Trust me, if I haven't tried all these, I would have never asked such a question here. |
|
Back to top |
|
|
Shahin R K
New User
Joined: 05 Feb 2015 Posts: 1 Location: INDIA
|
|
|
|
Pedro wrote: |
Quote: |
... make the TYPE(RP) to normal fields, ... and control the type and value through a rexx program. |
I think it is easier to set the type in the )ATTR section and if it is constant, set the value in the )INIT section. If the column heading changes, then set it in your rexx program. |
There is no other way I can manipulate the properties of TYPE(RP) values? |
|
Back to top |
|
|
|