- Where Developers Learn, Share, & Build Careers
I have some texts that I am getting from the database that should be shown to users. Each lesson contains some links to other texts that I need to render. Links are dynamic, which means that I can not already know how many of these links will be provided (and where in the text). Just to give a quick example:
T1 This is the first example of text LINK1 to give a LINK2 short idea of my problem
T2 Another LINK3 example of this is my problem Is LINK4 Anybody can help LINK5?
What's the best way to do this in Wicket? Without pre-cooked markup?
a) Do not just do it with wickets, use any templateing solution < P> B) If your links are already final in your texts, then use SmartLinkMultilineLabel .
Comments
Post a Comment