How to implement # mentions custom dropdown in Angular 8 - html

I want to implement following feature like in most of social media networks in Angular 8.
This is the scenario:
When user is typing inside a <textarea> whenever he type a # symbol then I want to show a dropdown in that specify place (place where the cursor is blinking).
I tried to find any npm packages but couldn't.
Any library or any solution to do this?

I think I have found a solution for this. We can use following npm package to create above feature. Not the exact same thing, but some how it helps to resolve the issue.
https://www.npmjs.com/package/angular-mentions

Related

How to tell what library a custom tag is coming from?

This is a bit of a weird question, so please bare with me.
So I've joined a new project at work and it's pretty old (Vue2, no ts support, etc.). It also utilizes a couple UI libraries, amongst other dependencies.
As I am combing through, I've found a few tags labeled <Sider> and I cannot find where they are coming from. Neither of the UI Libraries seem to utilize it and I cannot just cmd click to see where it's coming from. It's also not a custom component or anything in the app.
Is there anyway to tell where these sorts of tags would be coming from?
This is for work so I can't share the app itself, but here's a quick image of what one of those tags looks like:
Any advice would be greatly appreciated. Cheers!
If the app is working and the components (Sider and side-menu) are not registered in the component it self, they might be registered globally (see vue2 docs). Global registration typically gets done in your main.js file.
This could also be the reason that you cannot find the component in your project, because it may have another file name. In your main.js might be something like:
import TotallyDifferentName from '#/components/TotallyDifferentName.vue'
Vue.component('Sider', TotallyDifferentName) // Now you can use component in templates as Sider
Hope this helps.

Using the Code Iris or SketchIt! plugins in PhpStorm 2019.2

I need a tool to generate UML from my PHP classes and Code Iris looked like it could do that. Well, from the screenshots anyway. There isn't anything on the plugin page or on their home page describing how to actually use the plugin. Same with the SketchIt! plugin.
However, there is no reference to either one of them in any of the menu bar menus nor in any of the right click context menus. I don't see any errors when loading PhpStorm like there have been in the past when it tries to load an incompatible plugin.
So what do I need to actually utilize either of these plugins?
Any help would be greatly appreciated.

SlideView panel - don't know how to reference

After doing months of Android, I'm picking up Windows Phone again.
I wanted to install the nuget package for the SlideView control:
https://slideview.codeplex.com/
I installed it, but I have no idea how to reference it in XAML.
In the sample it uses the control namespace, but I don't have it,
so I should define it, but I don't know how?
Just add this on the top of your xaml page <phone:PhoneApplicationPage> tag.
xmlns:library="clr-namespace:SlidingPanel.Library;assembly=SlidingPanel.Library"
Then you could use that reference below anywhere to access all the properties of SlidePanel.
Refer this for more:
Hope it helps!

HTML5 Facebook Like Box in Joomla Custom HTML Module

I'm using the HTML5 code for the Like Box on my website: http://new.woodypointcomms.com.au. For some reason the faces part is displaying some people multiple times. Can anyone tell me why this might be happening?
You might try a pre-built module version instead of the direct FB widget. Joomla filters HTML content [depending on your settings] which may cause issues. Also try without caching options [Global Configuration] if you've enabled any.

Node Tabs in Drupal 7

Can someone point me out a module for creating tabs in node?
I already try the QuickTabs but it uses the same tabs in all nodes i want to create different tabs in every node.
I found out that there has been Multigroup module which supported grouping CCK fields and repeating them but there isnt any version for drupal 7
I tried Node reference module but it only shows Links of referenced module not the whole content.
Can someone point me ideas on how to accomplish this maybe views can help some how but i dont know how to reference view with node.
Quicktabs will work fine, just override the look of the tabs with css and or tpl.php theme override files.
Or set up lots of different quicktabs and give them each a different display style, there are quite a few built in, and you can specify your own.
Or you could look at jQuery UI Tabs and use built in theme settings...