SlideShare a Scribd company logo
1 of 28
open source administration software for education
next generation student system
Using the Kuali Student Configurable
User Interaction Model & Framework
Brian Smith - User Interaction Development Lead, San Joaquin Delta College
William Washington - User Experience Architect, University of Washington
open source administration software for education
Outline
• Kuali Student Needs: User Experience & Customization
• Solution: Reusable Components
• Implementation: User Interaction Model & Framework
• User Interaction Model: Overview & examples
• User Interaction Framework: Overview & examples
• Next Steps
open source administration software for education
Kuali Student Needs
• A great user experience
– Clear navigation, headers, input labels, instructions,
messaging, and help
• Institutional configuration
– Fields and field labels
• Customize fields
• Add/Remove fields
– Headers
– Sections (Pages)
– Functionality
open source administration software for education
Solution
• Reusable & configurable user interface elements
– Small “components”
• Buttons, Links
• Input fields (e.g. radio button, checkbox, text input)
– Big “composites”
• Tables
• File Upload tool; Commenting tool
• Benefits
– Consistent behavior across the application
– Consistent look and feel
– Reusable code
open source administration software for education
Implementation
• User Interaction Model (UIM)
– Documentation that specifies the behavior of
modular user interface elements for the developers
of the framework
– Interface design guide for implementers and code
contributors.
• User Interaction Framework (UIF)
– Leverages Google Web Toolkit (GWT), and is the
working code that will allow implementers to
configure the user interface.
open source administration software for education
User Interaction Model (UIM)
• Specifies the behavior and display of modular
user interface elements
• Evolving UI guide for implementers and
contributors
• UIM doesn’t describe how to configure UI
elements
open source administration software for education
UIM: Examples
• UIM structure - link
• Individual page examples
– Example: Tables
– Example: Search & Select, Search Results
– Example: Multiplicity
– Example: Sections and Fields
open source administration software for education
UIM: Example: Sections and Fields
Field (FieldDescriptor)
Section (GroupSection)
Requiredness
Explanatory Help
Label
Input
Instructions
Watermark
Constraints
Requiredness (by state)
open source administration software for education
User Interaction Framework (UIF)
• The GWT framework for Kuali Student which
presents and handles our layouts and data
• The UIF is responsible for navigation,
controllers, views, and laying out fields and
widgets on the screen – the functional
requirements of the UI
• Also responsible for interacting with the data
model, and services through RPC calls
open source administration software for education
UIF: Architecture
open source administration software for education
UIF: Components
SectionView (VerticalSectionView)
LayoutController (MenuSectionController)
Field (FieldDescriptor)
Section (GroupSection)
open source administration software for education
UIF: Components
• FieldDescriptors
– Fields that map to a data element that exists in the data dictionary
– Most fields are auto-generated based on their dictionary metadata, but
can be further customized
• Section
– Contain sections, which themselves contain fields
– SectionViews are sections that are also Views
• LayoutControllers
– Contain Views
– Handle the layout, navigation, and breadcrumbs for a defined section
automatically
– The LayoutController is also responsible for sending and receiving data
from the server
– An example of a LayoutController is the CourseProposalController
open source administration software for education
UIF: How To Configure
• Defining Fields and Sections on a screen
– Course and Program screens use a configurer class to define
the fields displayed on the screen
– To override: define a configurer which extends the default
configurer and override its methods to change the content
that appears on the screen. Then, use GWT deferred
binding to use your custom configurer instead.
• Customizing widgets
– Similarly, some widgets in the UIF can be customized by
institutions through deferred binding
• Visual Design Theme
– The existing Theme can also be overridden in a similar
fashion through deferred binding
open source administration software for education
UIF: Examples
• Field Configuration
– Change label
– Add a new field
– Advanced field configuration
• Section configuration
– Change field location
– Change section location
open source administration software for education
UIF: Changing Field Labels
• Changing a Label
– A field is defined with a message key that
corresponds with messages in the DB
– You can change the value of the message in the DB
using SQL or by using the Rice message utility for KS
– Alternatively, hardcode the text in the code when
you override the configurer, if you do not need to
change the text during runtime
addField(section, COURSE + "/" + COURSE_TITLE, generateMessageInfo(“courseTitle”));
open source administration software for education
UIF: Changing Field Labels - Example
• Before
• After
open source administration software for education
UIF: Changing Field Labels - Example
open source administration software for education
UIF: Additional Field Label changes -
Example
• Change additional labels of a field
– “-instruct” for instructions
– “-help” for help
– “-watermark” for watermarks in text fields
– “-constraints” for constraint help text below the
input field
open source administration software for education
UIF: Add a new field
1. Add a new data field in your custom
dictionary extension/override
<bean id="org.kuali.student.lum.course.dto.CourseInfo"
parent="org.kuali.student.lum.course.dto.CourseInfo-parent" >
<property name="attributes">
<list merge="true">
<ref bean="courseInfo.newField" />
</list>
</property>
</bean>
<bean id="courseInfo.newField" parent="baseString">
<property name="name" value="newField" />
<property name="minOccurs" value="1" />
<property name="maxLength" value=“4" />
<property name="dynamic" value="true" />
</bean>
open source administration software for education
UIF: Add a new field
2. Add the field using its field key to a section in
your custom configurer
VerticalSectionView section = initSectionView(CourseSections.COURSE_INFO,
LUConstants.INFORMATION_LABEL_KEY);
…
addField(section, COURSE + "/" + "newField", generateMessageInfo("New
Field"));
…
open source administration software for education
UIF: Add a new field
3. Use your custom configurer, instead of the
default one, in your gwt module through
deferred binding
<replace-with
class="edu.kuali.config.lum.lu.ui.client.course.configuration.SampleCourseConfigurer"
>
<when-type-is
class="org.kuali.student.lum.lu.ui.course.client.configuration.CourseConfigurer"/>
</replace-with>
open source administration software for education
UIF: Add a new field
4. Test:
• Note the field’s size and required indicator –
the field is generated based on its metadata:
maxLength = 4 and minOccurs = 1
open source administration software for education
UIF: Advanced Field Configuration
• You can change the field’s widget:
• You can also change its binding (when there are
differences between how data is stored and how it is
represented in the UI; ie, the translation)
FieldDescriptor addField(Section section, String fieldKey, MessageKeyInfo messageKey,
Widget widget)
fieldDescriptor.setModelWidgetBinding(myNewBinding);
open source administration software for education
UIF: Change Field Location
• Simply change the order of the fields in a
section
• You can also delete fields from a section by
removing the addField call
addField(section, COURSE + "/" + COURSE_TITLE,
generateMessageInfo(LUConstants.COURSE_TITLE_LABEL_KEY));
addField(section, COURSE + "/" + TRANSCRIPT_TITLE,
generateMessageInfo(LUConstants.SHORT_TITLE_LABEL_KEY));
open source administration software for education
UIF: Change Section Location
• Move a section by changing the order of the
addSection calls on its parent section
• Change the menu items by moving/deleting
the addMenuItem calls
• Result:
layout.addMenuItem(sections, generateCourseInfoSection());
layout.addMenuItem(sections, generateGovernanceSection());
layout.addMenuItem(sections, generateCourseLogisticsSection());
open source administration software for education
UIF: Configurable UI Areas
• Following similar configuration patterns
shown, the following areas are also
configurable (with some divergence)
– Curriculum Management Home
– Course Proposal
– Course Summary Table
– View Course
– View and Edit Program Major
– View and Edit Program Specialization
open source administration software for education
Next Steps
• Planned UIM improvements
– General design principles
– Page flow patterns & principles
– Page layout templates and patterns
• Planned UIF improvements
– Investigating GWT 2.1 and MVP framework
– Improved documentation
• KS is looking at complementing the UIF with
KNS/KRAD for the development of some KS
administration screens in it’s next release
open source administration software for education
Q & A

More Related Content

Viewers also liked

Offshore Company Registration - The Procedure and the Benefits
Offshore Company Registration - The Procedure and the BenefitsOffshore Company Registration - The Procedure and the Benefits
Offshore Company Registration - The Procedure and the Benefitsnoseyjake
 
Internet Exporer 8 BETA PREVIEW
Internet Exporer 8 BETA PREVIEWInternet Exporer 8 BETA PREVIEW
Internet Exporer 8 BETA PREVIEWLauren Cooney
 
How to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media PlanHow to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media PlanPost Planner
 
Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionIn a Rocket
 
SEO: Getting Personal
SEO: Getting PersonalSEO: Getting Personal
SEO: Getting PersonalKirsty Hulse
 

Viewers also liked (6)

Facebook y Twitter para periodistas
Facebook y Twitter para periodistasFacebook y Twitter para periodistas
Facebook y Twitter para periodistas
 
Offshore Company Registration - The Procedure and the Benefits
Offshore Company Registration - The Procedure and the BenefitsOffshore Company Registration - The Procedure and the Benefits
Offshore Company Registration - The Procedure and the Benefits
 
Internet Exporer 8 BETA PREVIEW
Internet Exporer 8 BETA PREVIEWInternet Exporer 8 BETA PREVIEW
Internet Exporer 8 BETA PREVIEW
 
How to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media PlanHow to Build a Dynamic Social Media Plan
How to Build a Dynamic Social Media Plan
 
Learn BEM: CSS Naming Convention
Learn BEM: CSS Naming ConventionLearn BEM: CSS Naming Convention
Learn BEM: CSS Naming Convention
 
SEO: Getting Personal
SEO: Getting PersonalSEO: Getting Personal
SEO: Getting Personal
 

Similar to Using the Kuali Student Configurable User Interface Framework

Advance Data Analysis & Database
Advance Data Analysis & DatabaseAdvance Data Analysis & Database
Advance Data Analysis & DatabaseAhmed Yasir Khan
 
Discovering the New SuccessFactors LMS Admin Features
Discovering the New SuccessFactors LMS Admin FeaturesDiscovering the New SuccessFactors LMS Admin Features
Discovering the New SuccessFactors LMS Admin FeaturesAshton Plusquellec
 
Educational Information Management System (EIMS)
Educational Information Management System (EIMS)Educational Information Management System (EIMS)
Educational Information Management System (EIMS)Chetan Hireholi
 
Introduction and objectives of the project
Introduction and objectives of the projectIntroduction and objectives of the project
Introduction and objectives of the projectrihan696
 
Online courseregistration tolstoy
Online courseregistration   tolstoyOnline courseregistration   tolstoy
Online courseregistration tolstoyHardik Padhy
 
Online courseregistration tolstoy
Online courseregistration   tolstoyOnline courseregistration   tolstoy
Online courseregistration tolstoyyirgalem ameshe
 
SharePoint for Teaching and Learning
SharePoint for Teaching and LearningSharePoint for Teaching and Learning
SharePoint for Teaching and LearningEduserv
 
Generating User Interface for Information Applications from Task, Domain and ...
Generating User Interface for Information Applications from Task, Domain and ...Generating User Interface for Information Applications from Task, Domain and ...
Generating User Interface for Information Applications from Task, Domain and ...Jean Vanderdonckt
 
Real World – Rapid prototyping with Logic Apps
Real World – Rapid prototyping with Logic AppsReal World – Rapid prototyping with Logic Apps
Real World – Rapid prototyping with Logic AppsBizTalk360
 
Online library management system
Online library management systemOnline library management system
Online library management systemYesu Raj
 
Library Management System
Library Management SystemLibrary Management System
Library Management SystemMartins Okoi
 
Jurnal e-learning management system using service oriented architecture
Jurnal   e-learning management system using service oriented architectureJurnal   e-learning management system using service oriented architecture
Jurnal e-learning management system using service oriented architectureRatzman III
 
Math-Bridge Architecture
Math-Bridge ArchitectureMath-Bridge Architecture
Math-Bridge Architecturemetamath
 
Using Qualtrics for Online Trainings
Using Qualtrics for Online TrainingsUsing Qualtrics for Online Trainings
Using Qualtrics for Online TrainingsShalin Hai-Jew
 
Final Total Preliminary Report
Final Total Preliminary ReportFinal Total Preliminary Report
Final Total Preliminary ReportMrugen Deshmukh
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
60780174 49594067-cs1403-case-tools-lab-manual
60780174 49594067-cs1403-case-tools-lab-manual60780174 49594067-cs1403-case-tools-lab-manual
60780174 49594067-cs1403-case-tools-lab-manualChitrarasan Kathiravan
 

Similar to Using the Kuali Student Configurable User Interface Framework (20)

Advance Data Analysis & Database
Advance Data Analysis & DatabaseAdvance Data Analysis & Database
Advance Data Analysis & Database
 
Discovering the New SuccessFactors LMS Admin Features
Discovering the New SuccessFactors LMS Admin FeaturesDiscovering the New SuccessFactors LMS Admin Features
Discovering the New SuccessFactors LMS Admin Features
 
Online help desk
Online help deskOnline help desk
Online help desk
 
Educational Information Management System (EIMS)
Educational Information Management System (EIMS)Educational Information Management System (EIMS)
Educational Information Management System (EIMS)
 
Introduction and objectives of the project
Introduction and objectives of the projectIntroduction and objectives of the project
Introduction and objectives of the project
 
Online courseregistration tolstoy
Online courseregistration   tolstoyOnline courseregistration   tolstoy
Online courseregistration tolstoy
 
Online courseregistration tolstoy
Online courseregistration   tolstoyOnline courseregistration   tolstoy
Online courseregistration tolstoy
 
SharePoint for Teaching and Learning
SharePoint for Teaching and LearningSharePoint for Teaching and Learning
SharePoint for Teaching and Learning
 
Generating User Interface for Information Applications from Task, Domain and ...
Generating User Interface for Information Applications from Task, Domain and ...Generating User Interface for Information Applications from Task, Domain and ...
Generating User Interface for Information Applications from Task, Domain and ...
 
Real World – Rapid prototyping with Logic Apps
Real World – Rapid prototyping with Logic AppsReal World – Rapid prototyping with Logic Apps
Real World – Rapid prototyping with Logic Apps
 
Online library management system
Online library management systemOnline library management system
Online library management system
 
Library Management System
Library Management SystemLibrary Management System
Library Management System
 
Jurnal e-learning management system using service oriented architecture
Jurnal   e-learning management system using service oriented architectureJurnal   e-learning management system using service oriented architecture
Jurnal e-learning management system using service oriented architecture
 
Math-Bridge Architecture
Math-Bridge ArchitectureMath-Bridge Architecture
Math-Bridge Architecture
 
Using Qualtrics for Online Trainings
Using Qualtrics for Online TrainingsUsing Qualtrics for Online Trainings
Using Qualtrics for Online Trainings
 
sem5.pdf
sem5.pdfsem5.pdf
sem5.pdf
 
Final Total Preliminary Report
Final Total Preliminary ReportFinal Total Preliminary Report
Final Total Preliminary Report
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
60780174 49594067-cs1403-case-tools-lab-manual
60780174 49594067-cs1403-case-tools-lab-manual60780174 49594067-cs1403-case-tools-lab-manual
60780174 49594067-cs1403-case-tools-lab-manual
 
SRMS-FINAL 3.pptx
SRMS-FINAL 3.pptxSRMS-FINAL 3.pptx
SRMS-FINAL 3.pptx
 

Recently uploaded

ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...FIDO Alliance
 
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdfSimplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdfFIDO Alliance
 
AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101vincent683379
 
Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024Patrick Viafore
 
What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024Stephanie Beckett
 
UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1DianaGray10
 
IESVE for Early Stage Design and Planning
IESVE for Early Stage Design and PlanningIESVE for Early Stage Design and Planning
IESVE for Early Stage Design and PlanningIES VE
 
IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoTAnalytics
 
Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessUXDXConf
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?Mark Billinghurst
 
Connecting the Dots in Product Design at KAYAK
Connecting the Dots in Product Design at KAYAKConnecting the Dots in Product Design at KAYAK
Connecting the Dots in Product Design at KAYAKUXDXConf
 
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...CzechDreamin
 
Optimizing NoSQL Performance Through Observability
Optimizing NoSQL Performance Through ObservabilityOptimizing NoSQL Performance Through Observability
Optimizing NoSQL Performance Through ObservabilityScyllaDB
 
Strategic AI Integration in Engineering Teams
Strategic AI Integration in Engineering TeamsStrategic AI Integration in Engineering Teams
Strategic AI Integration in Engineering TeamsUXDXConf
 
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...CzechDreamin
 
Introduction to Open Source RAG and RAG Evaluation
Introduction to Open Source RAG and RAG EvaluationIntroduction to Open Source RAG and RAG Evaluation
Introduction to Open Source RAG and RAG EvaluationZilliz
 
WSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptxWSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptxJennifer Lim
 
Top 10 Symfony Development Companies 2024
Top 10 Symfony Development Companies 2024Top 10 Symfony Development Companies 2024
Top 10 Symfony Development Companies 2024TopCSSGallery
 
Salesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
Salesforce Adoption – Metrics, Methods, and Motivation, Antone KomSalesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
Salesforce Adoption – Metrics, Methods, and Motivation, Antone KomCzechDreamin
 
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...FIDO Alliance
 

Recently uploaded (20)

ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
 
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdfSimplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
 
AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101
 
Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024
 
What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024
 
UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1UiPath Test Automation using UiPath Test Suite series, part 1
UiPath Test Automation using UiPath Test Suite series, part 1
 
IESVE for Early Stage Design and Planning
IESVE for Early Stage Design and PlanningIESVE for Early Stage Design and Planning
IESVE for Early Stage Design and Planning
 
IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024
 
Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for Success
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 
Connecting the Dots in Product Design at KAYAK
Connecting the Dots in Product Design at KAYAKConnecting the Dots in Product Design at KAYAK
Connecting the Dots in Product Design at KAYAK
 
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
 
Optimizing NoSQL Performance Through Observability
Optimizing NoSQL Performance Through ObservabilityOptimizing NoSQL Performance Through Observability
Optimizing NoSQL Performance Through Observability
 
Strategic AI Integration in Engineering Teams
Strategic AI Integration in Engineering TeamsStrategic AI Integration in Engineering Teams
Strategic AI Integration in Engineering Teams
 
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
SOQL 201 for Admins & Developers: Slice & Dice Your Org’s Data With Aggregate...
 
Introduction to Open Source RAG and RAG Evaluation
Introduction to Open Source RAG and RAG EvaluationIntroduction to Open Source RAG and RAG Evaluation
Introduction to Open Source RAG and RAG Evaluation
 
WSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptxWSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptx
 
Top 10 Symfony Development Companies 2024
Top 10 Symfony Development Companies 2024Top 10 Symfony Development Companies 2024
Top 10 Symfony Development Companies 2024
 
Salesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
Salesforce Adoption – Metrics, Methods, and Motivation, Antone KomSalesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
Salesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
 
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
 

Using the Kuali Student Configurable User Interface Framework

  • 1. open source administration software for education next generation student system Using the Kuali Student Configurable User Interaction Model & Framework Brian Smith - User Interaction Development Lead, San Joaquin Delta College William Washington - User Experience Architect, University of Washington
  • 2. open source administration software for education Outline • Kuali Student Needs: User Experience & Customization • Solution: Reusable Components • Implementation: User Interaction Model & Framework • User Interaction Model: Overview & examples • User Interaction Framework: Overview & examples • Next Steps
  • 3. open source administration software for education Kuali Student Needs • A great user experience – Clear navigation, headers, input labels, instructions, messaging, and help • Institutional configuration – Fields and field labels • Customize fields • Add/Remove fields – Headers – Sections (Pages) – Functionality
  • 4. open source administration software for education Solution • Reusable & configurable user interface elements – Small “components” • Buttons, Links • Input fields (e.g. radio button, checkbox, text input) – Big “composites” • Tables • File Upload tool; Commenting tool • Benefits – Consistent behavior across the application – Consistent look and feel – Reusable code
  • 5. open source administration software for education Implementation • User Interaction Model (UIM) – Documentation that specifies the behavior of modular user interface elements for the developers of the framework – Interface design guide for implementers and code contributors. • User Interaction Framework (UIF) – Leverages Google Web Toolkit (GWT), and is the working code that will allow implementers to configure the user interface.
  • 6. open source administration software for education User Interaction Model (UIM) • Specifies the behavior and display of modular user interface elements • Evolving UI guide for implementers and contributors • UIM doesn’t describe how to configure UI elements
  • 7. open source administration software for education UIM: Examples • UIM structure - link • Individual page examples – Example: Tables – Example: Search & Select, Search Results – Example: Multiplicity – Example: Sections and Fields
  • 8. open source administration software for education UIM: Example: Sections and Fields Field (FieldDescriptor) Section (GroupSection) Requiredness Explanatory Help Label Input Instructions Watermark Constraints Requiredness (by state)
  • 9. open source administration software for education User Interaction Framework (UIF) • The GWT framework for Kuali Student which presents and handles our layouts and data • The UIF is responsible for navigation, controllers, views, and laying out fields and widgets on the screen – the functional requirements of the UI • Also responsible for interacting with the data model, and services through RPC calls
  • 10. open source administration software for education UIF: Architecture
  • 11. open source administration software for education UIF: Components SectionView (VerticalSectionView) LayoutController (MenuSectionController) Field (FieldDescriptor) Section (GroupSection)
  • 12. open source administration software for education UIF: Components • FieldDescriptors – Fields that map to a data element that exists in the data dictionary – Most fields are auto-generated based on their dictionary metadata, but can be further customized • Section – Contain sections, which themselves contain fields – SectionViews are sections that are also Views • LayoutControllers – Contain Views – Handle the layout, navigation, and breadcrumbs for a defined section automatically – The LayoutController is also responsible for sending and receiving data from the server – An example of a LayoutController is the CourseProposalController
  • 13. open source administration software for education UIF: How To Configure • Defining Fields and Sections on a screen – Course and Program screens use a configurer class to define the fields displayed on the screen – To override: define a configurer which extends the default configurer and override its methods to change the content that appears on the screen. Then, use GWT deferred binding to use your custom configurer instead. • Customizing widgets – Similarly, some widgets in the UIF can be customized by institutions through deferred binding • Visual Design Theme – The existing Theme can also be overridden in a similar fashion through deferred binding
  • 14. open source administration software for education UIF: Examples • Field Configuration – Change label – Add a new field – Advanced field configuration • Section configuration – Change field location – Change section location
  • 15. open source administration software for education UIF: Changing Field Labels • Changing a Label – A field is defined with a message key that corresponds with messages in the DB – You can change the value of the message in the DB using SQL or by using the Rice message utility for KS – Alternatively, hardcode the text in the code when you override the configurer, if you do not need to change the text during runtime addField(section, COURSE + "/" + COURSE_TITLE, generateMessageInfo(“courseTitle”));
  • 16. open source administration software for education UIF: Changing Field Labels - Example • Before • After
  • 17. open source administration software for education UIF: Changing Field Labels - Example
  • 18. open source administration software for education UIF: Additional Field Label changes - Example • Change additional labels of a field – “-instruct” for instructions – “-help” for help – “-watermark” for watermarks in text fields – “-constraints” for constraint help text below the input field
  • 19. open source administration software for education UIF: Add a new field 1. Add a new data field in your custom dictionary extension/override <bean id="org.kuali.student.lum.course.dto.CourseInfo" parent="org.kuali.student.lum.course.dto.CourseInfo-parent" > <property name="attributes"> <list merge="true"> <ref bean="courseInfo.newField" /> </list> </property> </bean> <bean id="courseInfo.newField" parent="baseString"> <property name="name" value="newField" /> <property name="minOccurs" value="1" /> <property name="maxLength" value=“4" /> <property name="dynamic" value="true" /> </bean>
  • 20. open source administration software for education UIF: Add a new field 2. Add the field using its field key to a section in your custom configurer VerticalSectionView section = initSectionView(CourseSections.COURSE_INFO, LUConstants.INFORMATION_LABEL_KEY); … addField(section, COURSE + "/" + "newField", generateMessageInfo("New Field")); …
  • 21. open source administration software for education UIF: Add a new field 3. Use your custom configurer, instead of the default one, in your gwt module through deferred binding <replace-with class="edu.kuali.config.lum.lu.ui.client.course.configuration.SampleCourseConfigurer" > <when-type-is class="org.kuali.student.lum.lu.ui.course.client.configuration.CourseConfigurer"/> </replace-with>
  • 22. open source administration software for education UIF: Add a new field 4. Test: • Note the field’s size and required indicator – the field is generated based on its metadata: maxLength = 4 and minOccurs = 1
  • 23. open source administration software for education UIF: Advanced Field Configuration • You can change the field’s widget: • You can also change its binding (when there are differences between how data is stored and how it is represented in the UI; ie, the translation) FieldDescriptor addField(Section section, String fieldKey, MessageKeyInfo messageKey, Widget widget) fieldDescriptor.setModelWidgetBinding(myNewBinding);
  • 24. open source administration software for education UIF: Change Field Location • Simply change the order of the fields in a section • You can also delete fields from a section by removing the addField call addField(section, COURSE + "/" + COURSE_TITLE, generateMessageInfo(LUConstants.COURSE_TITLE_LABEL_KEY)); addField(section, COURSE + "/" + TRANSCRIPT_TITLE, generateMessageInfo(LUConstants.SHORT_TITLE_LABEL_KEY));
  • 25. open source administration software for education UIF: Change Section Location • Move a section by changing the order of the addSection calls on its parent section • Change the menu items by moving/deleting the addMenuItem calls • Result: layout.addMenuItem(sections, generateCourseInfoSection()); layout.addMenuItem(sections, generateGovernanceSection()); layout.addMenuItem(sections, generateCourseLogisticsSection());
  • 26. open source administration software for education UIF: Configurable UI Areas • Following similar configuration patterns shown, the following areas are also configurable (with some divergence) – Curriculum Management Home – Course Proposal – Course Summary Table – View Course – View and Edit Program Major – View and Edit Program Specialization
  • 27. open source administration software for education Next Steps • Planned UIM improvements – General design principles – Page flow patterns & principles – Page layout templates and patterns • Planned UIF improvements – Investigating GWT 2.1 and MVP framework – Improved documentation • KS is looking at complementing the UIF with KNS/KRAD for the development of some KS administration screens in it’s next release
  • 28. open source administration software for education Q & A

Editor's Notes

  1. William: provide an example screen shot? Mention breadcrumbs User knowing where they are: breadcrumbs, page title, clearly indicated navigation Once the begin working, meaningful labels on forms, good instructions and clean messaging, and help when they need it. Configuration Customize field: Change label Change widget (to a widget that supports the data type) Constraints – requiredness, min/max chars. Remove fields Add fields – Thru dynamic attributes Change field labels - Change "Course Number" to say "Subject Number" on the Course Id component for Remove/change headers Sections: Take almost all the fields and put them on a single screen for data entry so it is more like MIT's current course screen. Functionality: versioning, LO categories
  2. On a wiki Not a configuration guide Defines how things behave and look UIM TOC (v2) Page template UIF takes UIM and based on configuration needs, makes some components configurable.
  3. What’s in it? On a wiki Not a configuration guide Defines how things behave and look UIM TOC (v2) Page template UIF takes UIM and based on configuration needs, makes some components configurable. In-depth example: Sections and fields Screenshots with call outs Show UIM evolved page Show specific UIM pages for above Show real working example
  4. What are the pieces Where the UIF fits in the “grand scheme” What does the UIF contain? Where are the boundaries of the UIF?
  5. Simple View of our technical architecture for Kuali Student UIF fits at the top of this stack and interacts directly with the user It contains the controllers, views, configurers. It also contains theming such as css and images. It also talks to underlying business services and additional utility services such as the message service These business services talk to our core entity services such as the lu service Everything on the diagram that has the wrench and screwdriver icon is configurable within KS I will be talking about how to configure some aspects the UIF today
  6. This is a screenshot of KS as it will appear in R1.1 I have highlighted the different parts of the screen, and their respective controller The LayoutController controls the display of the views, but also provides the object header and menu for navigation
  7. You do this easily by using the Rice Message utility without touching any code
  8. Once you have your intitution’s configuration project created
  9. Changes to the constraints also give you on the fly UI validation against those constraints when the user interacts with your new field
  10. CurriculumHomeConfigurer CourseConfigurer ViewCourseConfigurer CourseSummaryConfigurer MajorEditConfigurer MajorViewConfigurer VariationEditConfigurer VariationViewConfigurer