Skip to content

Replies

0
Viktor Kombov
Viktor Kombov answered on Jul 11, 2022 2:44 AM

Hello Giuseppe,

Thank you for posting in our community.

Could you please take a look at the following issue in our GitGub repository, where is suggested a possible solution for а similar behavior and let me know whether you find the suggestion helpful?

Regards,
Viktor Kombov
Entry Level Software Developer
Infragistics, Inc.

0
Viktor Kombov
Viktor Kombov answered on Jul 4, 2022 9:13 AM

Hello Benoit,

Thank you for reaching out.

I noticed that you are using the licensed version of Ignite UI for Angular:

[quote user=”AA95E6F56993BA503B1419660333A745FD7E54E2″]"@infragistics/igniteui-angular": "^14.0.2",[/quote]

and you are trying to import the themes for the free version:

[quote user=”AA95E6F56993BA503B1419660333A745FD7E54E2″]I tried to switch the @import to `@use "igniteui-angular/theming" as *;`[/quote]

Can you please try to import the themes using the path for licensed version and let me know if this worked.

// licensed version:
@use '@infragistics/igniteui-angular/theming' as *;

Regards,
Viktor Kombov
Entry Level Software Developer
Infragistics, Inc.

0
Viktor Kombov
Viktor Kombov answered on Jun 27, 2022 12:36 PM

Hello Chris,

I apologize for the delayed response.

I have created a small sample trying to reproduce the described behavior. I am using the 13.2.1 version of the igniteui-angular package. On my side there are no errors and the igx-card components are loaded as expected.

Attached you will find my sample for your reference. Please test it on your side and let me know how it behaves. If this is not an accurate demonstration of what you are trying to achieve, please feel free to modify it and send it back to me along with steps to reproduce. Alternatively, if the behavior cannot be replicated, please feel free to provide your own sample. Remove any external dependencies and code that is not directly related to the issue, zip your application and attach it in this case.

Having a working sample on my side, which I can debug, is going to be very helpful in finding the root cause of this behavior.

Thank you for your cooperation.

Looking forward to hearing from you.

Regards,

Viktor Kombov

Entry Level Software Developer

Infragistics, Inc.

Attachments:
0
Viktor Kombov
Viktor Kombov answered on Jun 3, 2022 7:15 AM

Hello Chris,

I am glad that you find my suggestion helpful!

Thank you for choosing Infragistics components!

Regards
Viktor Kombov
Entry Level Software Developer
Infragistics, Inc.

0
Viktor Kombov
Viktor Kombov answered on Jun 2, 2022 9:23 PM

Hello Chris,

Thank you for posting in our community.

I have created a small sample demonstrating how to arrange multiple IgxCard components using CSS Grid. Please test it on your side and let me know whether you find it helpful.

Regards,
Viktor Kombov
Entry Level Software Developer
Infragistics, Inc.

0
Viktor Kombov
Viktor Kombov answered on Mar 31, 2022 7:23 PM

Hello Ray,

I am glad that you find my suggestion helpful!

Thank you for choosing Infragistics components!

Regards
Viktor Kombov
Entry Level Software Developer
Infragistics, Inc.

0
Viktor Kombov
Viktor Kombov answered on Mar 31, 2022 3:16 PM

Hello Ray,

Thank you for your patience while I was looking into this matter for you.

Indeed the parentNode method returns a jQuery node element. However, having this element, you can use the nodeFromElement method of igTree in order to get the node object of the parent:

function FilterTreeNodeClicked(evt, ui) {
    var parentNodeElement = $("#tree").igTree("parentNode", ui.node.element);
    var parentNodeObject = $("#tree").igTree("nodeFromElement", parentNodeElement);
}

I believe you will find the following documentation regarding the igTree control very helpful:

API reference

Help topics

Online samples

Please do not hesitate to contact me if you need any further assistance with this matter.

Regards,
Viktor Kombov
Entry Level Software Developer
Infragistics, Inc.