CSS stylesheet (used only for Wizard pages)


Currently, we use css stylesheet for only PDKNC theme. And its main purpose for the attributes for the wizard page. Each of wizard page will use the specific css. You can find the it at C:\[Installed path]\Themes\PDKNC\css\PDKNCDataWizardEditor.css

For the attributes on the wizard page, we have many Uis for them based on their syntax.

Due to the complex css stylesheet, we have some basic rules :

  • We need to limit using 1 css for many attributes. For each attribute, you need to have a own css stylesheet for the attribute.
  • Isreadonly setting can affect to the attribute UI when the attribute ’s syntax is UnicodeString.

The following are samples based on the current css stylesheets which we support.

Syntax: UnicodeString


we often use it as the textbox for the attribute whose claim type is free claim or discrete claim. The isReadOnly attribute can affect to the way we want the atrribute to be readonly or not.

  • UnicodeString without using any buttons :
    • Free claim :
  • On page setup for the wizard page : we declare like below :

  • When isReadOnly is False : The UI will look like below :

Identify UserProv isReadOnly is False  - CSS

  • When isReadOnly is True : The UI will look like below :

Identify UserProv isReadOnly is True  - CSS

  • Discrete claim
    • Multi discrete claim
  • On page setup for the wizard page : we declare like below :

 

  • When isReadOnly is False : The UI will look like below :

Identify UserProv Discreet Claim  isReadOnly is False  - CSS

  • When isReadOnly is True : The UI will look like below :

Identify UserProv Discreet Claim  isReadOnly is True- CSS

  • Single discrete claim
  • On page setup for the wizard page : we declare like below :

  • When isReadOnly is False : The UI will look like below :

 

Was this helpful ?Good Somewhat Bad