This is a migrated thread and some comments may be shown as answers.

Password value not in Hashtable

0 Answers 50 Views
ListView
This is a migrated thread and some comments may be shown as answers.
moegal
Top achievements
Rank 1
moegal asked on 15 May 2013, 03:57 PM
Am I missing something here?  Seems I cannot see the value for a password field either. I am already having problems with checkboxes.

I am doing manual updating with 

Hashtable newValues = new Hashtable();
editedItem.ExtractValues(newValues);

and using 

<telerik:RadTextBox ID="PasswordInput1" runat="server" ValidationGroup="AccContactEdit"
                                        TextMode="Password" onkeyup="checkPasswordMatch()" Width="100" CssClass="PasswordInput1" EnableViewState="true">
                                        <PasswordStrengthSettings ShowIndicator="true" TextStrengthDescriptions="Weak;Fair;Good;Better;Best"
                                            IndicatorElementBaseStyle="PasswordBase" TextStrengthDescriptionStyles="L0;L1;L2;L3;L4;L5"
                                            IndicatorElementID="CustomIndicator" IndicatorWidth="0px" PreferredPasswordLength="8">
                                        </PasswordStrengthSettings>
 
                                    </telerik:RadTextBox>


Any help?  I have hours into this page and will have to start over with a grid or a some alternative if I can't get all of the values from the edit/insert  templates.

Thanks,

Marty

UPDATE:  I was able to just do the following and not use the hashtable.

RadTextBox PasswordInput1 = e.ListViewItem.FindControl("PasswordInput1") as RadTextBox;

No answers yet. Maybe you can help?

Tags
ListView
Asked by
moegal
Top achievements
Rank 1
Share this question
or