How can I modify example given in Sliding PanelBar to start with open position of the Panel Bar instead of closed.
When I change var expanded = false; from false to true I get an error: “Line 1534. Error: Invalid Argument”
Thanks in advance
| window.frames['myframeID'].ForceSave("0"); |
| function ForceSave(saleID) { |
| var ajaxManager = $find("<%= ajaxManager.ClientID %>"); |
| ajaxManager.ajaxRequest('ForceSave', 'ForceSave'); |
| } |

Hello there,
I'm trying to set the width to 100%, it works well but the textbox where is the actual path is not set to 100% ( it has maybe 200px ) . I don't know where is the problem, should I edit the css file for file explorer or something? Or is it possible to turn off that textbox?
Please can you help me with this?
Thank you very much for any help.
F.S.
Edit:
The explorer is in <telerik:RadPane ... > and when i set width to fixed size then the textbox is correct but the header where is Filename and Size of the file is set to 100%.
I've set my RadSplitter acording to this, maybe there is the problem: http://demos.telerik.com/aspnet/Splitter/Examples/ResizeWithWindow/DefaultCS.aspx
for instance in ItemDatabaound event
this.RTTGroupDetails.TargetControls.Add(nameLink.ClientID, dataValue.ToString().Replace("'",@"\'").ToString(), true);
Kindly help me out to handle special character like single quote.
Regards,
Chanda.
| If Session("AllData") Then |
| If TypeOf e.Item Is GridPagerItem Then |
| Dim pagerItem As GridPagerItem = CType(e.Item, GridPagerItem) |
| pagerItem.PagerContentCell.Controls.Clear() |
| Dim i As Integer |
| For i = 65 To 65 + 25 |
| Dim linkButton1 As New LinkButton() |
| Dim lc As New LiteralControl() |
| lc.Text = " " |
| linkButton1.Text = "" + ChrW(i) |
| linkButton1.CommandName = "alpha" |
| linkButton1.CommandArgument = "" + ChrW(i) |
| pagerItem.PagerContentCell.Controls.Add(linkButton1) |
| pagerItem.PagerContentCell.Controls.Add(lc) |
| Next i |
| End If |
| End If |