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
935
Mouse-hover in data-grid from field in data-grid
posted

I am roughly on latest AG/ID (14.2).

I have a data grid which represents scenarios (name, start, end, etc.) to which users want to add a field for comments (to describe purpose for oddly-suffixed scenario names). Adding the field is simple enough, but the intent is to use that comment as the mouse-hover text for the scenario name.

How is it that I set a mouse-hover text value for a field which is declared as below, and how to I reference the same row's comment field?

		<igx-column
			[pinned]="true"
			field="name"
			header="Scenario Name"
			[dataType]="'string'"
			[resizable]="true"
			width="12%"
			[sortable]="true">
			<ng-template igxCellEditor let-cell="cell">
				<igx-input-group type="border">
					<input
						igxInput
						[igxFocus]="true"
						[(ngModel)]="cell.editValue"
						(ngModelChange)="modelChange($event, cell, 'name')"
						displayDensity="compact" />
				</igx-input-group>
			</ng-template>
		</igx-column>

Parents Reply Children
No Data