Page 1 of 1

Placing Help Text in List or View/Edit Page

Posted: Mon Jan 01, 2018 4:11 pm
by bobmulder5555

Hi, yesterday I heard some users of one of my applications are coming on board who are easily confused. They will be using a limited function-set that already is made simple and to the point through views. I get the impression that still might be a challenge for them, so I would like to put in descriptive balloons like
"1. Select Month here" (pointing at the advanced search button for a modal in with they use a date picker)
"2. Select all recipients here" (pointing at the top select option in a list view to select everything that's listed on the page)
"3. Hit the Bell icon to send the e-mail reminders here" (pointing at the bell glyph that is created thru a cListAction custom action Page_Load (like example 3 in Server events help file)/Row_CustomAction combi.

So to summarize, I'd like to be able to create permanent text balloons (with or without icons etc) pointing almost anywhere on a page.

Is there a way to do this elegantly and having these text balloons as part of the projectfile?

Thanks for any input, Bob


Re: Placing Help Text in List or View/Edit Page

Posted: Tue Jan 02, 2018 11:40 am
by mobhar

If you enable "Multi-language" option from "PHP" -> "General Options", then you may simply setup the tooltip from the "Field Edit Tag Title" and/or "Field Image Tag Alt" from "Tools" -> "Multi-Language Property Editor".


Re: Placing Help Text in List or View/Edit Page

Posted: Tue Jan 02, 2018 3:05 pm
by kirondedshem

@mobhar
I was going to use a custom library untill i saw this, so thanks alot.
I can change the edit tag title text of a given field dynamically. as follows
function Page_DataRendering(&$header) {
$this->Trademark->EditAttrs["title"] = "My custom Tooltip";
}

Except do you know how to change tooltip positioning from bottom to left, right etc still for any field as well.


Re: Placing Help Text in List or View/Edit Page

Posted: Tue Jan 02, 2018 4:35 pm
by mobhar

Google "css tooltip position".


Re: Placing Help Text in List or View/Edit Page

Posted: Tue Jan 02, 2018 4:55 pm
by Webmaster

Re: Placing Help Text in List or View/Edit Page

Posted: Wed Feb 28, 2018 7:12 am
by bobmulder5555

Problem with pop-ups etc is that a user won't know about helptext until s/he hovers over icon.
But I found a good compromise -> See my post in user tips: Uber-Flexible Help System for PHPMaker websites


Re: Placing Help Text in List or View/Edit Page

Posted: Wed Feb 28, 2018 4:20 pm
by kirondedshem

Oohh, before I forget there is also custom message which will place a help text below the input controll if you want something more obivous to see. eg

// Page Load event
function Page_Load() {

	//echo "Page Load";
	$this->Model->CustomMsg = "My custom help message";
}

Re: Placing Help Text in List or View/Edit Page

Posted: Thu Mar 01, 2018 8:43 am
by bobmulder5555

Oh Cool, gonna try it out.