protected
AutoCompleteExtender Ajax_Slowa_Kluczowe = new AutoCompleteExtender();
which is TextBox but "autocompleting"
2)
protected
LinkButton SSlowa = new LinkButton(); - this is link button wich will be used to open radwindow
3) RadWindow which contains RadGrid inside it. Rad grid contains names of keywords retrieved from database. The keywords are links. When I click on a keyword code behind should close the radwindow, release resources like radgrid and so on and finally pass argument (the text of the keyword) to Ajax_Slowa_Kluczowe.
I suppose that all the actions should be done in client programming
So the questions are:
a) how to invoke Radwindow (without postback)
b) how links inside radgid should look like?
c) how to close radwindow + pass text of link to Ajax_Slowa_Kluczowe (which is de facto textbox)
I'm beginner programmer so can you provide snippets of code? thank you.
Best Regards
Darek

I have a simple panelbar but it will not expand using client Javascript, i.e. item.expand(), unless the RadPanelItem has a text attribute.
I do not need the text attribute as the content is defined in the item template. Also, it does not seem possible to hide the vertical space taken by the root item using skin css (not for IE anyway).
Is there a way I can achieve a textless panel item that expands please?
| <telerik:RadPanelBar ID="MyPanelBar" Width="100%" runat="server"> |
| <Items> |
| <telerik:RadPanelItem Expanded="false" Text="I DONT WANT THIS TEXT"> |
| <ItemTemplate> |
| <table><tr><td>1</td><td>2</td></tr></table> |
| </ItemTemplate> |
| <Items> |
| <telerik:RadPanelItem> |
| <ItemTemplate> |
| <table><tr><td>1</td><td>2</td></tr></table> |
| </ItemTemplate> |
| </telerik:RadPanelItem> |
| </Items> |
| </telerik:RadPanelItem> |
| </Items> |
| </telerik:RadPanelBar> |
| <telerik:RadSlider ID="RadSlider1" runat="server" OnClientValueChange="HandleValueChange" IsSelectionRangeEnabled="true" /> |
| function HandleValueChange(sender, eventArgs) |
| { |
| // not sure how to tell the difference b/w the two |
| var handle1 = sender.get_activeHandle(); |
| var handle2 = sender.get_activeHandle(); |
| $get("<%=TextBox1.ClientID %>").value = handle1.get_value(); |
| $get("<%=TextBox2.ClientID %>").value = handle2.get_value(); |
| } |
Can someone please help me
Thanks
maggi
var manager = $find("<%= RadAjaxManager.GetCurrent(Page).ClientID %>").ajaxRequest();manager.ajaxRequest();