This question is locked. New answers and comments are not allowed.
Hi,
My page have multiple radexpander with multiplle control inside each and there are couple up buttons as the level of radexpander.
when i don't specify any tabindex then it work fine by navigating through all control inside expander and also to the next radexpander after the last control of fist expander and after that it goes to the button. But when i specify tab index as below then it doesn't work properly.
Please suggest how to set the tabindex to radexpander. but its working fine with silverlight toolkit expander properly.
Thank you
Hrushikesh
My page have multiple radexpander with multiplle control inside each and there are couple up buttons as the level of radexpander.
when i don't specify any tabindex then it work fine by navigating through all control inside expander and also to the next radexpander after the last control of fist expander and after that it goes to the button. But when i specify tab index as below then it doesn't work properly.
<Grid x:Name="LayoutRoot" Background="White"> <StackPanel> <telerik:RadExpander TabIndex="0"> <StackPanel> <TextBox TabIndex="1"/> <TextBox TabIndex="2"/> <TextBox TabIndex="3"/> <TextBox TabIndex="4"/> </StackPanel> </telerik:RadExpander> <telerik:RadExpander TabIndex="5" > <StackPanel> <TextBox TabIndex="6"/> <TextBox TabIndex="7"/> <TextBox TabIndex="8"/> <TextBox TabIndex="9"/> </StackPanel> </telerik:RadExpander> <StackPanel Orientation="Horizontal"> <Button Width="50" Height="35" TabIndex="10" /> <Button Width="100" TabIndex="11"/> <Button Width="80" TabIndex="12"/> </StackPanel> </StackPanel> </Grid>Please suggest how to set the tabindex to radexpander. but its working fine with silverlight toolkit expander properly.
Thank you
Hrushikesh