Below queries relates to Batch Editing feature of the RadGrid (ASP.NET AJAX’s)
Scenario 1: In Image 1, 2 and 3, we are using ASP.NET AJAX’s dropdown list box within a ASP.NET AJAX’s Grid, this is the sample application provided by Telerik. The second one is cascading dropdown list box, when we select country in the first dropdown list box, it should fill all the states in the second dropdown list box of depending upon the country selected in the first dropdown list box. If you look at Image 1, you can see that we have “Asia” and “Asia – Japan”. In Image 2, a user changes the value from “Asia” to “Europe” but the values do not get filled in the second dropdown list box as you can see it is still showing “Asia-Japan”. When we click on the second drop down list box then only it fills the states of the country selected in the first dropdown list box and still showing the “Asia-Japan”.
Queries Set 1:
- We don’t want the above feature; we want that if the user selects any value in the first dropdown list box and that list box causes post back and automatically clears the existing values of second dropdown list box and fill with new values.
- Can we use ASP.Net dropdown list box inside the grid rather than Telerik ASP.NET AJAX’s dropdown list box?
Scenario 2: In Image 4, we are using ASP.NET AJAX’s dropdown list box within a ASP.NET AJAX’s Grid. When we select Cargo Type dropdown list box, it first displays “Loading…” and then fill the list box with the actual values from the database/ object.
Query Set 2: We don’t want this “Loading…”, please provide us code to remove this feature.