I have a update splitter that I want to expand on the clientside based on textchanged event of a textbox. I don't want to toggle it, but I want to expand the splitter. Is it possible to do this?
- Saketh.
Here is how I did it at the client side. My update splitter name is ItemsSplitter and it is in a content page.
if (ctl00_ContentPlaceHolder1_ItemsSplitter_SplitContainer.Panel1Collapsed == true){ctl00_ContentPlaceHolder1_ItemsSplitter_SplitContainer.ToggleExpand();}
I put this in a javascript function (SpliiterExpand) and called the javascript function like this in the TextBox control OnChange="SplitterExpand()"
Hope this helps somebody. - Saketh.
<saketh> wrote in message news:204240@10.0.1.98... Here is how I did it at the client side. My update splitter name is ItemsSplitter and it is in a content page. if (ctl00_ContentPlaceHolder1_ItemsSplitter_SplitContainer.Panel1Collapsed == true){ctl00_ContentPlaceHolder1_ItemsSplitter_SplitContainer.ToggleExpand();} I put this in a javascript function (SpliiterExpand) and called the javascript function like this in the TextBox control OnChange="SplitterExpand()" Hope this helps somebody. - Saketh. http://helpcentral.componentone.com/cs/forums/p/75038/204240.aspx#204240