Hi,
I'm changing UltraWebListBar to WebExplorerBar while migrating to new controls. In the first it was possible to explicitly say if one wants postback on groupClicked or on ItemClicked. However, in WebExplorerBar Groups are treated like items. So, I need to handle group-click event client-side and item-click event server-side. Of course in server-side I can use
if (e.IsExplorerBarItem()),
but I don't need the postback at all, i don't need that page refreshing.
Any help?
And I've got one more issue - when I run the project in IE9 i get the JS error
// For Firefox, Opera, Chorme, Safari, IE9 we should fire on the capturing phase
this._tree.get_element().addEventListener('mousedown', fnMouseDown, true);
I found that issue was discussed here https://es.infragistics.com/community/forums/f/ultimate-ui-for-asp-net/64562/microsoft-jscript-runtime-error-theform-is-undefined and here https://es.infragistics.com/community/forums/f/ignite-ui-for-javascript/67628/error-in-framework-when-appending-partial-view-to-div/342357#342357. But decision from the first didn't help me, and in ie 8 everything's OK for me, as well as in Chrome. Again, I'm using Infragistics4 11.1, CLR4.
Yeah, I forgot to mention - it's of course with webexplorerbar... Once I add even the new control of this class to my page, it gives this error. However if I just ignore it in ie9 everything seems to work all right.