-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #768 from NSSuresh11/OLE-6393_3.0_New
OLE-6393 : Fixed testing issues found in dev server (OLE-6393 and OLE-8906) for OLE-3.0
- Loading branch information
Showing
4 changed files
with
172 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
64 changes: 64 additions & 0 deletions
64
...ces/org/kuali/ole/deliver/view/circulations/dialogs/item-hold-validation-error-dialog.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright 2005-2012 The Kuali Foundation | ||
Licensed under the Educational Community License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.opensource.org/licenses/ecl2.php | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
|
||
<beans xmlns="http://www.springframework.org/schema/beans" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" | ||
xsi:schemaLocation="http://www.springframework.org/schema/beans | ||
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd"> | ||
|
||
|
||
<!--OleGenericDialogs--> | ||
<bean id="itemHoldValidationErrorMessageDialog" parent="errorMessageDialog"> | ||
<property name="availableResponses"> | ||
<list> | ||
<!--Empty--> | ||
</list> | ||
</property> | ||
<property name="items"> | ||
<list merge="true"> | ||
<ref bean="itemHoldValidationErrorBtnLayoutSection"/> | ||
</list> | ||
</property> | ||
</bean> | ||
|
||
<bean id="itemHoldValidationErrorBtnLayoutSection" parent="Uif-HorizontalBoxSection"> | ||
<property name="items"> | ||
<list> | ||
<bean id="proceed_Button" parent="Uif-SecondaryActionButton" p:actionLabel="Proceed" p:style="width:150px" | ||
p:methodToCall="postRequestCheck" p:ajaxSubmit="true" | ||
p:onClickScript="jq.fancybox.close();" | ||
p:successCallback="jq('#checkoutItem_control').focus();"/> | ||
<bean id="donNotProceedButton" parent="Uif-SecondaryActionButton" p:actionLabel="Do Not Procced" | ||
p:style="width:300px" | ||
p:methodToCall="clearUI" p:ajaxSubmit="true" p:onClickScript="jq.fancybox.close();"/> | ||
<bean id="holdRecordLink" parent="Uif-LinkField" p:target="_blank" | ||
p:style="height:25px;font-size:12px;line-height:2em;" | ||
p:href="@{urlBase}/portal.do?channelTitle=Patron&channelUrl=@{urlBase}/ole-kr-krad/patronRequestedRecord?viewId=OlePatronRequestedRecordView&methodToCall=viewRequestedRecords&patronId=@{patronDocument.olePatronId}" | ||
p:linkText="<font color='#000000'/>View Hold Items</font>" > | ||
<property name="cssClasses"> | ||
<list merge="true"> | ||
<value>uif-smallActionButton</value> | ||
</list> | ||
</property> | ||
</bean> | ||
</list> | ||
</property> | ||
</bean> | ||
|
||
</beans> |