AX 2009/2012 中的基本搜索/查找功能 (Ctrl+F) 无法正常工作...如何修复?

发布于 2025-01-01 21:43:29 字数 303 浏览 3 评论 0 原文

我觉得我可能会失去理智......但是如果你在 AOT 中搜索任何带有双冒号“::”的内容,它就会完全失败。我正在尝试通过 Forms\SysAotFind 来解决这个问题,但我不想为了可能只在我的系统上的东西而浪费时间。

要在 AX 2009 中重现,请选择 Classes\SalesTableType,按 Ctrl+F 并将“CustLedgerAccounts::sumAccount”放入包含的文本框中,然后单击立即查找。您可以看到它明显位于 Classes\SalesTableType\accountCust 方法中。我尝试过在对象内搜索基本枚举,但也没有成功。

I feel like I might be losing my mind...but if you search the AOT for anything with double colons "::", it fails completely. I'm trying to step through the Forms\SysAotFind to figure this out but I didn't want to spin my wheels a bunch for something that might be on my system only.

To reproduce in AX 2009, select Classes\SalesTableType, press Ctrl+F and put "CustLedgerAccounts::sumAccount" in the containing text box and click find now. You can see this is clearly located in the Classes\SalesTableType\accountCust method. I've tried searching for base enums inside objects with no luck either.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

烟花易冷人易散 2025-01-08 21:43:29

我注意到同样的行为,但是用反斜杠转义冒号可以使搜索正常工作。

因此,在您的情况下,您需要搜索“CustLedgerAccounts\:\:sumAccount”。

I noticed the same behavior, but escaping the colons with a backslash makes the search work correctly.

So in your case you would need to search for "CustLedgerAccounts\:\:sumAccount".

忆梦 2025-01-08 21:43:29

搜索使用 正则表达式 .microsoft.com/en-us/library/aa886279.aspx" rel="noreferrer">匹配 函数。
冒号是一个特殊字符,因此需要用反斜杠转义。

The search uses regular expressions in the syntax defined by the match function.
Colon is a special character, hence it needs to be escaped by a backslash.

晒暮凉 2025-01-08 21:43:29

对于那些寻求修复的人,您可以看到问题出在哪里,如果您想专门允许双冒号,只需调整它即可:

[c]    \Classes\SysTreeNodeSearch\isNodeInRange     #46

        if (!match(containingText,source))
            return false;

For those searching for a fix, you can see where the issue is here and just tweak it if you want to allow specifically for double colons:

[c]    \Classes\SysTreeNodeSearch\isNodeInRange     #46

        if (!match(containingText,source))
            return false;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文