In the multiUrl Picker, could someone who understands .net coding better than I do please make it so the title shows up in the UI in addtion to the link when a custom title is specified - just makes the component a bit more end user friendly.
Not thoroughly tested, but this seems to do the trick :)
In MultiUrlPickerScripts.js (see the 4 bold lines)
$itemContainer.children().each(function () { var $li = $(this); var state = getItemState($li); var url = state.Url; var displayText = state.Title || url || "";
Feature Request: multiUrl Picker show title in UI
In the multiUrl Picker, could someone who understands .net coding better than I do please make it so the title shows up in the UI in addtion to the link when a custom title is specified - just makes the component a bit more end user friendly.
thanks :)
Hi Bob,
Could you create a ticket for this on our CodePlex please? http://ucomponents.codeplex.com/WorkItem/Create
We can review it and try to schedule it in.
Thanks, Lee.
done! also, if you want to point me to where in the source i can hack that - any pointers would be greatly appreciated ;)
http://ucomponents.codeplex.com/workitem/14722
Not thoroughly tested, but this seems to do the trick :)
In MultiUrlPickerScripts.js (see the 4 bold lines)
-Tom
thanks Tom!
well, i feel good that i was at least looking in the right spot :)
let me try it out and see if it works for me on this end :)
hey, it works just like i wanted!
i guess if i would change anything, i would make it so it did not hyperlink? but, this acheives what i was looking for!
thanks again Tom!
oh, wait, i see how this all works now... it is finding a class then it is setting the text and the link...
hmmm, i guess that works for me ;)
is working on a reply...