Home Service Manager Portal Feature Requests
We appreciate you taking the time to vote and add your suggestions to make our products awesome! Your request will be submitted to the community for review and inclusion into the backlog.

We recommend reviewing what is submitted before posting, in case your idea has already been submitted by another community member. If it has been submitted, vote for that existing feature request (by clicking the up arrow) to increase its opportunity of being added to Cireson solutions.

For more information around feature requests in the Cireson Community click here.

Improve error reporting on portal forms

Sean_TerrySean_Terry Customer Advanced IT Monkey ✭✭✭
Would it be possible to improve the formatting of errors on the portal?

The error at the top of the page is bright red, but within the form it isn't and its really hard to spot at times. A lot of users end up ringing the help desk:


6 votes

Submitted · Last Updated

Comments

  • Brian_WiestBrian_Wiest Customer Super IT Monkey ✭✭✭✭✭
    Add to your custom.css sheet and update as desired. 

    .k-widget.k-tooltip {
        border-color: #e3eaed;
        background-color: #FF0000;
        color: #33444d;
    }
  • Sean_TerrySean_Terry Customer Advanced IT Monkey ✭✭✭
    Add to your custom.css sheet and update as desired. 

    .k-widget.k-tooltip {
        border-color: #e3eaed;
        background-color: #FF0000;
        color: #33444d;
    }
    Thank you :)

    I noticed it affects the colour of the description in the search bar as well (as shown below). I can't see anything else it affects. Does this code just affect this search description and the error, and nothing else?


  • Brian_WiestBrian_Wiest Customer Super IT Monkey ✭✭✭✭✭
    Sorry I do not use that page anymore for my end user home page. 
    I have set (currently at v8.2.1) ServiceCatalog/Listing/#/ 
    and that search box does not have the drop down on active typing. 
  • Sean_TerrySean_Terry Customer Advanced IT Monkey ✭✭✭
    Sorry I do not use that page anymore for my end user home page. 
    I have set (currently at v8.2.1) ServiceCatalog/Listing/#/ 
    and that search box does not have the drop down on active typing. 
    No worries, thanks for your help.
  • john_doylejohn_doyle Cireson Support Ninja IT Monkey ✭✭✭✭
    Hi @S_Terry
    You can make the selector specific to Request Offerings by adding a class like this
    <span>ro-form</span> .k-widget.k-tooltip {<div>&nbsp; &nbsp; border-color: #e3eaed;</div><div>&nbsp; &nbsp; background-color: #FF0000;</div><div>&nbsp; &nbsp; color: #33444d;</div><div>}</div>.

    Now this css code will only apply to elements of the class "k-widget k-tooltip" which are descendants of elements with the class "ro-form".

  • Tom_HendricksTom_Hendricks Customer Super IT Monkey ✭✭✭✭✭
    Another variation that makes it look more like the warning bubble at the top of the page:
    .ro-form .k-widget.k-tooltip {
    	border-color: #FF0000 !important;
    	border-radius: 3px;
    	background-color: #FFDED7;
    	color: #33444d;
    }

  • Bruno_SerafimBruno_Serafim Customer IT Monkey ✭
    Thank you all :)
Sign In or Register to comment.