I have Tag browse component and want to filter tags with the string provided. I did similar for Alarm status table and works great but some how it does not work for this component. Most likely I am missing something.
I have text box where user will input the string which is linked to window custom property called 'searchString'.
@Urvish_Mehta I think your issue here is that when looking for a substring in another string, case matters, so since you are using the lower function on searchString you need to also use it on tag.name.
As an aside, there is no need to use str() here, tag.name is already a string.
You might want to use tag.fullPath though, the user may be trying to match something that isn't in the tag name itself.