|
[CSHTML]
<ej-gantt id="ganttSample"
task-id-mapping="Id"
task-name-mapping="Name"
allow-gantt-chart-editing="false"
//..
>
</ej-gantt> |
|
[CSHTML]
<ej-gantt id="ganttSample" datasource="ViewBag.datasource"
task-id-mapping="Id"
task-name-mapping="Name"
enable-collapse-all="true"
//..
>
</ej-gantt> |
|
<head>
<script src="scripts/ej.culture.fr-FR.min.js"></script>
</head> |
|
<head>
<script src="scripts/ej.localetexts.fr-FR.min.js"></script>
</head> |
|
ej.Gantt.Locale["fr-FR"] = {
//headerText to be displayed in TreeGrid
columnHeaderTexts: {
taskId: "Tâche Ia",
taskName: "Tâche Tâche",
startDate: "Démarrer Date",
endDate: "Fin Date",
resourceInfo: "Resources",
duration: "Durée",
status: "Progrès",
predecessor: "Prédécesseur",
baselineStartDate: "Baseline Démarrer Date",
baselineEndDate: "Baseline Fin Date"
},
//string to display in dialog
editDialogTexts: {
addFormTitle: "Nouveau Tâche",
editFormTitle: "Modifier Tâche",
saveButton: "Sauver",
cancelButton: "Annuler"
},
} |