user3766716
user3766716

Reputation: 13

OBIEE prompt set: Disable user input in date field

I have a report which contains date prompts. For several reasons, we want to disable manual user input into these date prompts, and to require the use of the date picker instead (this requirement won't change).

How can one do this?

What I've tried:

Any insight on how I can accomplish this?

Anybody know how to hack the behavior of the Apply button so I can call my js function again? OR where can I hack the raw html of the promptset/report so that can set the date fields to "disabled=true"?

Upvotes: 1

Views: 2449

Answers (1)

Mark P.
Mark P.

Reputation: 1827

I do not know of any hack for the "Apply" button, however if we change your process a bit, instead of locking the columns down (and possibly creating confusion for the end user "Why can't I click on this prompt!!"), what we could do is hide the prompts either by using a JQuery function, or other method. The link within this answer describes several options to hide prompts:

  1. Hidden prompts (Oracle Method)
  2. Hiding prompts using guided navigation
  3. Hiding prompts in a section
  4. Hiding certain UI controls inside a prompt

This link has many other links to resources, and should hopefully answer your question, albeit in a different way.

Links (several in case one gets broken):

Upvotes: 1

Related Questions