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
285
Click events
posted

Hi guys 

i have successfully binded the pivot grid but the click events of +,- and filter symbols are not working presently i am including this files only

<script src="../Scripts/Libraries/infragistics.core.js" type="text/javascript"></script>
<script src="../Scripts/Libraries/infragistics.lob.js" type="text/javascript"></script>

shall any more js file to add thanks in advance

it very urgent

Parents
No Data
Reply
  • 995
    posted

    Hello venkatesh,

    Please make sure you have included the required CSS files as well:

    <link href="{Path to IG resources}/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
    <link href="{Path to IG resources}/css/structure/infragistics.css" rel="stylesheet" />

    If you need to know when a member is being expanded, you can use the tupleMemberExpanding and tupleMemberExpanded events of the pivot grid:

    $("#pivotGrid").igPivotGrid({
        tupleMemberExpanding: function (evt, ui) {
            //return the name of axis, which holds the member and the tuple
            ui.axisName;
            //return a reference to the data source
            ui.dataSource;
            //return the index of the member in the tuple
            ui.memberIndex;
            //return the index of the tuple in the axis
            ui.tupleIndex;
            //return a reference to the igPivotGrid
            ui.owner;
        },
        height: "430px",
        width: "725px"
    });
    

    Furthermore this sample shows how to expand members programmatically.

    Let me know if you need any further assistance for this matter.

    Regards,

    Philip

Children