aspnet-js-aspxclientganttprogresstooltipshowingeventargs.md
Contains data for the ProgressTooltipShowing event.
declare class ASPxClientGanttProgressTooltipShowingEventArgs extends ASPxClientCancelEventArgs
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()
ASPxClientEventArgs ASPxClientCancelEventArgs ASPxClientGanttProgressTooltipShowingEventArgs
See Also