dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #27919
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 13915: added context-menu for section form mgmt
------------------------------------------------------------
revno: 13915
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2014-02-03 11:55:39 +0700
message:
added context-menu for section form mgmt
modified:
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/javascript/programStageSection.js
dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/programStageSection.vm
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/javascript/programStageSection.js'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/javascript/programStageSection.js 2012-10-01 09:38:04 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/javascript/programStageSection.js 2014-02-03 04:55:39 +0000
@@ -1,3 +1,10 @@
+$(function() {
+ dhis2.contextmenu.makeContextMenu({
+ menuId: 'contextMenu',
+ menuItemActiveClass: 'contextMenuItemActive',
+ listItemProps: ['id', 'uid', 'name', 'type', 'psid']
+ });
+});
function programStageSectionList( programStageId )
{
@@ -8,16 +15,20 @@
// View details
// -----------------------------------------------------------------------------
-function showSectionDetails( sectionId )
+function showSectionDetails( context )
{
- jQuery.getJSON( 'getProgramStageSection.action', { id: sectionId }, function ( json ) {
+ jQuery.getJSON( 'getProgramStageSection.action', { id: context.id }, function ( json ) {
setInnerHTML( 'nameField', json.programStageSection.name );
setInnerHTML( 'dataElementCountField', json.programStageSection.dataElementCount );
showDetails();
});
}
-function removeSection( id, name )
+function removeSection( context )
{
- removeItem( id, name, i18n_confirm_delete, 'removeProgramStageSection.action' );
+ removeItem( context.id, context.name, i18n_confirm_delete, 'removeProgramStageSection.action' );
+}
+
+function showUpdateProgramStageSectionForm( context ) {
+ location.href = 'showUpdateProgramStageSectionForm.action?id=' + context.id + '&programStageId=' + context.psid;
}
=== modified file 'dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/programStageSection.vm'
--- dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/programStageSection.vm 2013-06-29 14:16:34 +0000
+++ dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-patient/src/main/webapp/dhis-web-maintenance-patient/programStageSection.vm 2014-02-03 04:55:39 +0000
@@ -2,6 +2,15 @@
<h4>$programStage.displayName</h4>
+<div id="contextMenu" class="contextMenu">
+ <ul id="contextMenuItems" class="contextMenuItems">
+ <li data-enabled="canUpdate"><a data-target-fn="showUpdateProgramStageSectionForm"><i class="fa fa-edit"></i> $i18n.getString( "edit" )</a></li>
+ <li data-enabled="canUpdate"><a data-target-fn="translateWithContext"><i class="fa fa-globe"></i> $i18n.getString( "translation_translate" )</a></li>
+ <li data-enabled="canDelete"><a data-target-fn="removeSection"><i class="fa fa-trash-o"></i> $i18n.getString( "remove" )</a></li>
+ <li><a data-target-fn="showSectionDetails"><i class="fa fa-info-circle"></i> $i18n.getString( "show_details" )</a></li>
+ </ul>
+</div>
+
<input type='hidden' id='id' name='id' value='$programStage.id'>
<table class="mainPageTable">
@@ -15,28 +24,21 @@
<tr>
<td style="vertical-align:top">
<table class="listTable" id="listTable">
- <col>
- <col width="150">
<thead>
<tr>
<th>$i18n.getString( "name" )</th>
- <th>$i18n.getString( "operations" )</th>
</tr>
</thead>
<tbody id="list">
#set( $mark = false )
#foreach( $section in $sections )
- <tr id="tr${section.id}" #alternate( $mark )>
- <td onclick="showSectionDetails( $section.id )">$encoder.htmlEncode( $section.displayName )</td>
- <td style="text-align:center"#alternate( $mark )>
- <a href="showUpdateProgramStageSectionForm.action?programStageId=$programStage.id&id=$section.id" title="$i18n.getString( "edit" )"><img src="../images/edit.png" alt="$i18n.getString( 'edit' )"></a>
- <a href="javascript:translate( 'ProgramStageSection', '$section.id' )" title="$i18n.getString( 'translation_translate' )"><img src="../images/i18n.png" alt="$i18n.getString( 'translation_translate' )"/></a>
- <a href="javascript:removeSection( '$section.id', '$section.displayName' )" title="$i18n.getString( 'remove' )"><img src="../images/delete.png" alt="$i18n.getString( 'remove' )"></a>
- <a href="javascript:showSectionDetails( $section.id )" title="$i18n.getString( "show_details" )"><img src="../images/information.png" alt="$i18n.getString( 'show_details' )"></a>
- </td>
- </tr>
- #set( $mark = !$mark )
+ <tr id="tr${section.id}" data-id="$!section.id" data-uid="$!section.uid" data-psid="$!programStage.id" data-type="ProgramStageSection" data-name="$encoder.htmlEncode( $!section.displayName )"
+ data-can-manage="$security.canManage( $section )"
+ data-can-update="$security.canUpdate( $section )"
+ data-can-delete="$security.canDelete( $section )">
+ <td>$encoder.htmlEncode( $!section.displayName )</td>
+ </tr>
#end
</tbody>
</table>