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
215
get data andput it into a textbox
posted

Hi

I have a webhierahicalDataGrid, so when user click on a row , i would write some data in a textbox, but nothing append. I mean the rowEventSelection event change , I read the data and write into the textbox, but nothing. So i created a new component called textbox1 and when clicked on a row i try to write test on it but nothing???

Does any body have some idea  what is happenig.

Thank's

Chris

protected void WebHierarchicalDataGrid2_RowSelectionChanged(object sender, SelectedRowEventArgs e)

       {

if (e.CurrentSelectedRows.Count > 0)

            {

                TextBox1.Text ="Pipo";

}

}

Parents Reply Children
No Data