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
170
Expand Buttons not showing in Hierarchical Grid
posted

Hi, I'm trying to build a hierarchical grid in a page using a combination of angular, and jquery, but for some reason, none of the expand buttons are showing on the grid. Here is my html for the grid:

<ig-hierarchical-grid id="failureGrid" data-source="data" width="100%" height="150" auto-commit="true" primary-key="INCIDENT_NUMBER" auto-generate-columns="false" auto-generate-layouts="false" enable-hover-styles="false" intial-data-bind-depth="0">
                            <features>
                                <feature name="Selection" event-row-selection-changed="ncc.failureChanged" event-row-selection-changing="ncc.failureChanging"></feature>
                                <feature name="Resizing"></feature>
                                <feature name="Sorting"></feature>
                            </features>
                            <columns>
                                <column key="NC_CODE" header-text="NC Code" width="200px" data-type="string"></column>
                                <column key="NC_STATE" header-text="NC State" width="150px" data-type="string"></column>
                                <column key="StatusCounts" header-text="O/P/V" width="150px" data-type="string"></column>
                                <column key="INCIDENT_NUMBER" header-text="Incident Number" width="150px" data-type="string"></column>
                                <column key="OPERATION" header-text="Operation" width="130px" data-type="string"></column>
                                <column key="DATE_TIME" header-text="Date/Time" width="180px" data-type="date" format="MM/dd/yy HH:mm:ss tt"></column>
                                <column key="EMPLOYEE_NAME" header-text="Employee" width="150px" data-type="string"></column>
                            </columns>
                            <column-layouts>
                                <column-layout key="History" response-data-key="" primary-key="HISTORY_SNAPSHOT_ID" auto-generate-columns="false" width="100%" enable-hover-styles="false">
                                    <columns>
                                        <column key="HISTORY_DATE" header-text="History Date" width="200px" data-type="date" format="MM/dd/yy HH:mm:ss tt"></column>
                                        <column key="HISTORY_SNAPSHOT_ID" header-text="Edit Snapshot ID" width="50px" data-type="number"></column>
                                        <column key="HISTORY_SNAPSHOT_USER" header-text="Edit Snapshot User" width="150px" data-type="string"></column>
                                    </columns>
                                    <features>
                                        <feature name="Selection" event-row-selection-changed="ncc.failureChanged" event-row-selection-changing="ncc.failureChanging"></feature>
                                        <feature name="Resizing"></feature>
                                        <feature name="Sorting"></feature>
                                    </features>
                                </column-layout>
                            </column-layouts>
                        </ig-hierarchical-grid>

I can't see any errors, but for some reason the expand buttons just don't show up. There's no way for me to create the child grids. Any help would be appreciated. Thanks.

Parents Reply Children
No Data