Thanks.
<telerik:RadCloudUpload ID="RadCloudUpload1" runat="server" MultipleFileSelection="Automatic" AllowedFileExtensions=".jpg,.jpeg,.gif" ProviderType="Azure" MaxFileSize="3145728"></telerik:RadCloudUpload>I'm using radGrid to show 10 rows and 1st column frozen. I'm also using GridTemplateColumns.
Using an UpdatePanel with async trigger to initiate the results shows fine the first time...10 rows displayed + first column frozen.
Then, I click the same search again but this time, only 8 rows show and I lose the frozen 1st column. The data scrolls left/right but the headers remain in place.
Once in this broken state I click paging or sort (grdSearchResult_PageIndexChanged or grdGSearchResult_SortCommand) which rebinds the data, it fixes itself and the frozen column is back.
I really want to know why the radGrid doesn't size itself to show all 10 rows and what may be going on differently in the PageIndexChanged events. I have my radGrid Height set but should I be using something in the CSS to it automatically sizes to fit all the data rows?
I can't duplicate this behavior in IE though.
I am trying to implement a solution on a website where some pages have a RadTabStrip (with the MultiPageID set) with multiple tabs (with the PageViewID set).
When navigating to a page you can set the focus be set to a specific control that may be in a RadPageView. If that is the case what is the best way to select the tab that corresponds to the page view that contains the control?
Basically when focus is set to a control in a RadPageView how do I make sure the rad tab is selected so that control can be seen on the page?
I can find the control on the page that needs focus and then find the parent RadPageView (and RadMultiPage), but I don't know of a good way to select the RadTab that corresponds to the RadPageView (since I don't know the ID of the RadTabStrip).
Am I forced to recursively search through the controls on to the page to find the RadTabStrip (by type) and then find the tab that has the matching PageViewID?
Thanks!