Created
March 1, 2014 04:14
-
-
Save leonguyen/9285056 to your computer and use it in GitHub Desktop.
ad_user button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <button type="button" class="btn btn-default" id="btnBack" onclick="location.href='/ad_user'"><span class="glyphicon glyphicon-chevron-left"></span> Back</button> | |
| <% if(typeof(sess.AuthList['D'])!='undefined'){%> | |
| <button type="button" class="btn btn-default" id="btnDelete" <%=typeof(mr)!='undefined'?'':'disabled="disabled'%> <%=typeof(mr)!='undefined'&&mr.uId==sess.uId?'style=display:none':''%> onclick="del(<%=typeof(mr)!='undefined'?mr.uId:''%>)"><span class="glyphicon glyphicon-remove"></span> Delete</button> | |
| <%}//if%> | |
| <% if(typeof(sess.AuthList['E'])!='undefined' || typeof(sess.AuthList['S'])!='undefined'){%> | |
| <button type="button" class="btn btn-default" id="btnSave" onclick="save()"><span class="glyphicon glyphicon-floppy-disk"></span> Save</button> | |
| <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> | |
| <span class="caret"></span> | |
| </button> | |
| <ul class="dropdown-menu" role="menu"> | |
| <li><a href="#" id="btnSaveList" onclick="save('list')">Save & Back list</a></li> | |
| <li><a href="#" id="btnSaveAdd" onclick="save('add')">Save & Add new</a></li> | |
| </ul> | |
| <%}//if%> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment