ASPxClientGanttProgressTooltipShowingEventArgs Class
Contains data for the ProgressTooltipShowing event.
Declaration
declare class ASPxClientGanttProgressTooltipShowingEventArgs extends ASPxClientCancelEventArgs
Remarks
Web Forms:
<dx:ASPxGantt ID="Gantt" >
<ClientSideEvents ProgressTooltipShowing="onProgressTooltipShowing" ... />
</dx:ASPxGantt>
function onProgressTooltipShowing(s, e) {
var customContainer = document.createElement("div");
customContainer.classList.add("custom-progress");
customContainer.textContent = 'Progress: ' + e.item.progress + '%';
e.container.appendChild(customContainer);
}
MVC:
@Html.DevExpress().Gantt(settings => {
settings.Name = "gantt";
settings.ClientSideEvents.ProgressTooltipShowing = "function (s, e) {
var customContainer = document.createElement("div");
customContainer.classList.add("custom-progress");
customContainer.textContent = 'Progress: ' + e.item.progress + '%';
e.container.appendChild(customContainer);
}";
...
}).Bind(
GanttDataProvider.Tasks, GanttDataProvider.Dependencies,
GanttDataProvider.Resources, GanttDataProvider.ResourceAssignments
).GetHtml()
Concepts
Inheritance
ASPxClientEventArgs
ASPxClientCancelEventArgs
ASPxClientGanttProgressTooltipShowingEventArgs
See Also