Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
445
change colour in cell for whdg
posted

Hello,

I have a webhierarchicaldatagrid withy only 2 levels:

<ig:WebHierarchicalDataGrid ID="GridSampleSize" runat="server" AutoGenerateBands="False"
 AutoGenerateColumns="False" EnableAjax="False" Height="450px" Width="746px" DataKeyFields="MAINKEY,SAMPLESIZE,PHASE"
 OnInit="GridSampleSize_Init">
 <Columns>
  <ig:BoundDataField DataFieldName="PHASE" Key="PHASE">
   <Header Text="<%$ Resources:Labels, lblPHASE %>" />
  </ig:BoundDataField>
  <ig:BoundDataField DataFieldName="APPROVED" Key="APPROVED">
   <Header Text="APPROVED" />
  </ig:BoundDataField>
  <ig:BoundDataField DataFieldName="REJECTED" Key="REJECTED">
   <Header Text="REJECTED" />
  </ig:BoundDataField>
 </Columns>
 <Bands>
  <ig:Band AutoGenerateColumns="False" DataMember="dsMeasSampleSizeEnfant2_DefaultView"
   Key="dsMeasSampleSizeEnfant2_DefaultView">
   <Columns>
    <ig:BoundDataField DataFieldName="POINT" Key="POINT" Width="50px">
     <Header Text="<%$ Resources:Labels, lblPOINT %>" />
    </ig:BoundDataField>
    <ig:BoundDataField Width="250px" DataFieldName="DESCRIPT" Key="DESCRIPT">
     <Header Text="<%$ Resources:Labels, lblDESCRIPT %>" />
    </ig:BoundDataField>
    <ig:BoundDataField DataFieldName="TOLERANCE" Key="TOLERANCE" Width="50px" DataType="System.Decimal">
     <Header Text="<%$ Resources:Labels, lblTOLERANCE %>" />
    </ig:BoundDataField>
    <ig:BoundDataField DataFieldName="SIZE" Key="SIZE" Width="50px" DataType="System.Decimal">
     <Header Text="SIZE" />
    </ig:BoundDataField>
    <ig:BoundDataField DataFieldName="SUPVAL" Key="SUPVAL" Width="140px" DataType="System.Decimal">
     <Header Text="<%$ Resources:Labels, lblSUPVAL %>" />
    </ig:BoundDataField>
   </Columns>
   <Behaviors>
    <ig:EditingCore>
     <Behaviors>
      <ig:CellEditing Enabled="true" EditModeActions-EnableF2="true">
       <ColumnSettings>
        <ig:EditingColumnSetting ColumnKey="POINT" ReadOnly="true" />
        <ig:EditingColumnSetting ColumnKey="DESCRIPT" ReadOnly="true" />
        <ig:EditingColumnSetting ColumnKey="TOLERANCE" ReadOnly="true" />
        <ig:EditingColumnSetting ColumnKey="SIZE" ReadOnly="true" />
        <ig:EditingColumnSetting ColumnKey="SUPVAL" ReadOnly="true" />
       </ColumnSettings>
      </ig:CellEditing>
     </Behaviors>
    </ig:EditingCore>
   </Behaviors>
  </ig:Band>
 </Bands>
</ig:WebHierarchicalDataGrid>

My grid is bound in code behind.

I would like to have some cells in red, regarding this condition in my second level:

if (supval - size)>tolerance then supval cell should be in red..

I am trying to do it in client side, because I would like to have it on live (so when the value in supval is changed)

Do you have some ideas to do it?

Thanks for your help.