Skip to content

Commit 726333d

Browse files
authored
Merge pull request #9 from SyncfusionExamples/EJ2-932442-theme-hover
932442: Theme updated
2 parents 68d6bb1 + ca1a467 commit 726333d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Hotel-booking-App/src/HotelBookApp.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,7 @@ function HotelBookApp() {
10231023
width={'100%'}
10241024
dataSource={[printInfo.current]}
10251025
allowTextWrap={true}
1026-
beforePrint={beforePrint}>
1026+
beforePrint={beforePrint} enableHover={false} allowSelection={false}>
10271027
<ColumnsDirective>
10281028
<ColumnDirective field='FirstName' headerText='First name' width={120} />
10291029
<ColumnDirective field='LastName' headerText='Last name' width={120} />
@@ -1034,7 +1034,7 @@ function HotelBookApp() {
10341034
<Inject services={[Print]} />
10351035
</GridComponent>
10361036
<div className='e-header-text e-light-blue-border-bottom e-print-info-separator'>Room Information</div>
1037-
<GridComponent ref={g => hotelInfoGrid.current = g} width={'100%'} dataSource={[printInfo.current]} allowTextWrap={true}>
1037+
<GridComponent ref={g => hotelInfoGrid.current = g} width={'100%'} dataSource={[printInfo.current]} allowTextWrap={true} enableHover={false} allowSelection={false}>
10381038
<ColumnsDirective>
10391039
<ColumnDirective field='HotelData.HotelName' headerText='Hotel name' width={120} customAttributes={{ class: 'e-grid-hotel-name' }} />
10401040
<ColumnDirective field='HotelData.RoomName' headerText='Room name' width={120} customAttributes={{ class: 'e-grid-room-name' }} />
@@ -1052,4 +1052,4 @@ function HotelBookApp() {
10521052
</div>
10531053
);
10541054
}
1055-
export default HotelBookApp;
1055+
export default HotelBookApp;

0 commit comments

Comments
 (0)