I have a grid that has 2 labels in the CommandItemTemplate. I also have a RadWindow that I use for a user to set the upper and lower limit values to use on a couple of columns in the grid. When the RadWindow closes I want to take teh values from that window and update the text int he CommandItemTemplate.
My values are returning from the RadWindow correctly and they are being put into 2 variables - lowerLimit and upperLimit.
The label fields on the CommandItemTemplate are:
My values are returning from the RadWindow correctly and they are being put into 2 variables - lowerLimit and upperLimit.
The label fields on the CommandItemTemplate are:
<
asp:Label ID="lblLLimit" runat="server" Text="= over 85%"></asp:Label>
<
asp:Label ID="lblULimit" runat="server" Text="= over 100%"></asp:Label>
How can I update the labels text to display the values returned from the RadWindow programatically?
Thank you very much for your help.
Chris