Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
265
Need a solution for following problems related to mvc controls
posted

Hello,

1) I am using razor dropdownlist for one of my view. I am facing problem like drop down is only open when we click on arrow but not when we click on textarea of dropdownlist.

2) I have used infragistics pie chart to show some analysis data. It looks perfect but I am not able to show color change on hover of slice. I need a different color on slice hover.

Let me know how we can achieve this functionality.

  • 2095
    posted

    Hello gshontz,

    Thank you for posting in our community!

    1) I assume that you talked about igCombo MVC helpers. Add the following code to the end of the page and it should do the work:

    $(function () {
      var el = $("#Combo1"),
      combo = el.data().igCombo,
      input = combo.textInput();

      input.on("click", function () {
         combo.openDropDown();
      });
    });

    2) This is our API for igPieChart: http://www.igniteui.com/help/api/2016.1/ui.igpiechart  . As you can see the only event that is exposed is sliceClick. No hover events provided. You can suggest as a product idea on our site if you want. the Product Ideas site - http://ideas.infragistics.com, allows you to suggest new product features, new functionalities in existing products and controls, and even request new controls and products altogether. Members of the Infragistics Community then vote for the features and suggestions they want to see added to the products, resulting in the most popular features bubbling up to the top. 

    When planning new releases, our Product Management team will look at the most popular features and use your feedback to prioritize upcoming work.