Team,
Do you know a which configuration of Html or Ajax helper tags would allow calling a procedure with a get method? I need to simply generate a link that can call a jQuery method without posting to the page. The method called interacts with igTree in the jQuery.
Any ideas?
Thanks,
Donny Kerabatsos
Hello Donny,
I am glad that you have managed to resolve this.
If you need any further assistance with this please let me know.
I guess what I was looking for was if you have a special tag or MVC Html Helper to better create buttons or interactions with the tree. What I used was simply HTML. It works well enough to set the values needed before the page is set to postback.
D
Have you been able to resolve this or prepare a sample so I can be able to understand you better?Thank you for choosing Infragistics components!
I am getting confused. Is your issue related with igGrid or the igTree could clarify that? Please provide a code sample project of what have you managed to achieve so far, it will help me understand your goal.Thank you in advance!
Denis,
So far we have the data bound grid and temporarily using javascript JSON. The data layer is working. However the view isn't working as expected.
When trying to switch from this:
< but_ton id="btnAddAndNode" style="width:175px;">Add AND Condition< / but_ton><br />
to this:
@Ajax.ActionLink("Add AND Condition","AdHocQueryTool/Index", new {}, new AjaxOptions { HttpMethod = "GET" })
The link fails to act like the standard HTML button. The HTML button calls jQuery and adds/removes/manipulates the nodes just as expected. The actionlink doesn't do anything even with the same name and GET as method.
Perhaps it's configured incorrectly? Perhaps the HTML button is recommended? Perhaps I'm losing my mind? One of these things I am certain of.
-Donny