Hyperlink Titles & Events Suggestion

This forum allows users to post and respond to "How Do I Do ....." questions. The information contained in this forum has not been validated by K-Rise Systems and, as such, K-Rise Systems cannot guarantee the accuracy of the information.
Post Reply
JefferyD
Posts: 177
Joined: August 31st, 2021, 11:37 am
Contact:

Hyperlink Titles & Events Suggestion

Unread post by JefferyD »

Working with the hyperlink controls, I've encountered some complications.
  • I have a link amid several label controls, but I can't easily get it to match as the labels all have titles defined.
  • That link is for opening a modal window and not actually for navigation, but the href cannot be removed and is causing odd behavior. Any attempts to disable the href either doesn't work or also disables the onclick that the event is mapped to.

I noticed that labels and inputs generate as multiple elements while hyperlinks only generate as a single <a> tag.
Label Example

Code: Select all

<div control-type="label" onclick="Event()">
	<div control-title="">Title Content</div>
	<span>Text Content</span>
</div>
Suggestion
Could hyperlinks be made to generate the same way? This would allow titles to be added as well as allow events to be decoupled from the href thus granting more individual control over the 2 features.

Code: Select all

<div control-type="hyperlink" onclick="Event()">
	<div control-title="">Title Content</div>
	<a href="">Text Content</a>
</div>
word count: 178

Tags:
SteveCap
Posts: 327
Joined: August 26th, 2021, 9:18 am
Contact:

Re: Hyperlink Titles & Events Suggestion

Unread post by SteveCap »

Task #10299 has been created. This post will be updated when it has been completed.
word count: 15
JustinVanRegenmorter
Posts: 529
Joined: August 26th, 2021, 9:56 am
Contact:

Re: Hyperlink Titles & Events Suggestion

Unread post by JustinVanRegenmorter »

This issue has been resolved in RunTime Revision 1068.
word count: 9
Post Reply