I want to show the cell value of AspxGridview in Tooltip. I tried it using HtmlDataCellPrepared event but it shows database values not the grid cell values. i.e I am displaying the Value field in grid and storing Value field in database. When I hover the mouse on the cell it shows Value field in Tooltip. I have attached the screen shot kindly check it.
<dx:GridViewDataComboBoxColumn FieldName="CartType" PropertiesComboBox-TextField="" VisibleIndex="4" Settings-FilterMode="DisplayText"
Width="8%" Settings-AutoFilterCondition="Contains" Caption="Cart Type" PropertiesComboBox-Width="150px"
HeaderStyle-Font-Bold="true" CellStyle-HorizontalAlign="Left"
PropertiesComboBox-IncrementalFilteringMode="StartsWith" Settings-AllowAutoFilter="True">
<HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" Font-Bold="True" Wrap="True"></HeaderStyle>
<CellStyle HorizontalAlign="Left" VerticalAlign="Middle" Wrap="True"></CellStyle>
<PropertiesComboBox Width="250px" ValueField="Id" TextField="Type" ValueType="System.Int32" ClientSideEvents-KeyPress="disableenterkey">
<ValidationSettings ErrorTextPosition="Bottom" ErrorDisplayMode="Text">
<RequiredField ErrorText="Select Cart Type" IsRequired="true" />
</ValidationSettings>
</PropertiesComboBox>
<EditFormSettings VisibleIndex="2" Caption="Cart Type" />
</dx:GridViewDataComboBoxColumn>
