Click here to Skip to main content
15,898,035 members

Comments by Goel Himanshu (Top 5 by date)

Goel Himanshu 27-Dec-13 8:09am View    
Thanks SA. I had already put a query on thier website and got the answer on below link. I wanted to get the answer quickly so put the same question on code project also:
http://www.telerik.com/community/forums/aspnet-ajax/grid/telerik-radnumerictextbox-not-returning-updated-value-which-is-set-from-client-side-javascript.aspx
Goel Himanshu 29-Nov-13 5:59am View    
Hi it helps me a lot but there is a another issue after using your first option which is that i get this dataset from a cache then after applying sorting on defaultview it makes it sort for default view only. I want that it should be applied directly on the dataset so that after this step i can just update this dataset in cache so that further on i just retrive that dataset from cache where ever i want which gives me data in the tables in sorted order.
Goel Himanshu 28-Nov-13 6:14am View    
Thanks for your reply... the solution which you told me will not work as i have apply both condition only on one column. I have this dataset table with various columns and one of the column is "InvoiceItemLevel" which i have mentioned with various values. So i need to sort that dataset table using multiple condition like i have said i need package line first then all in alphabetical order.
I have used below logic but it is for single alphabetical sorting condition but i also had to add a condition for "Pacakage total" value and if this value is exist in dataset table this row must be moved to first position of the dataset.
DataSet.Tables[0].DefaultView.Sort = "InvoiceItemLevel asc";
Goel Himanshu 28-Nov-13 6:12am View    
Thanks for your reply... the solution which you told me is from Database side which i have already implemented and written in my question. The problem is that i have to do it from Frontend side means using vb.net. I have this dataset table with various columns and one of the column is "InvoiceItemLevel" which i have mentioned with various values. So i need to sort that dataset table using multiple condition like i have said i need package line first then all in alphabetical order.
I have used below logic but it is for single alphabetical sorting condition but i also had to add a condition for "Pacakage total" value and if this value is exist in dataset table this row must be moved to first position of the dataset.
DataSet.Tables[0].DefaultView.Sort = "InvoiceItemLevel asc";
Goel Himanshu 20-Sep-13 6:07am View    
Hi Basurajkumbhar thanks for you suggestion. but how to capture the value of that column cell on which user has double clicked in read only mode so that i can focus on that control.